Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
5edeef21
Commit
5edeef21
authored
Sep 02, 2011
by
Mike Samuel
Committed by
Nigel Tao
Sep 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exp/template/html: non-semantics changing tweaks to js{,_test}.go
R=nigeltao CC=golang-dev
https://golang.org/cl/4962049
parent
3fa7226d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
js.go
src/pkg/exp/template/html/js.go
+2
-4
js_test.go
src/pkg/exp/template/html/js_test.go
+4
-0
No files found.
src/pkg/exp/template/html/js.go
View file @
5edeef21
...
...
@@ -179,7 +179,6 @@ func jsStrEscaper(args ...interface{}) string {
for
i
,
r
:=
range
s
{
var
repl
string
switch
r
{
// All cases must appear in the IndexAny call above.
case
0
:
repl
=
`\0`
case
'\t'
:
...
...
@@ -222,7 +221,7 @@ func jsStrEscaper(args ...interface{}) string {
b
.
WriteString
(
repl
)
written
=
i
+
utf8
.
RuneLen
(
r
)
}
if
b
.
Len
()
==
0
{
if
written
==
0
{
return
s
}
b
.
WriteString
(
s
[
written
:
])
...
...
@@ -247,7 +246,6 @@ func jsRegexpEscaper(args ...interface{}) string {
for
i
,
r
:=
range
s
{
var
repl
string
switch
r
{
// All cases must appear in the IndexAny call above.
case
0
:
repl
=
`\0`
case
'\t'
:
...
...
@@ -316,7 +314,7 @@ func jsRegexpEscaper(args ...interface{}) string {
b
.
WriteString
(
repl
)
written
=
i
+
utf8
.
RuneLen
(
r
)
}
if
b
.
Len
()
==
0
{
if
written
==
0
{
return
s
}
b
.
WriteString
(
s
[
written
:
])
...
...
src/pkg/exp/template/html/js_test.go
View file @
5edeef21
...
...
@@ -205,6 +205,10 @@ func TestJSStrEscaper(t *testing.T) {
{
"+ADw-script+AD4-alert(1)+ADw-/script+AD4-"
,
`\x2bADw-script\x2bAD4-alert(1)\x2bADw-\/script\x2bAD4-`
,
},
// Invalid UTF-8 sequence
{
"foo
\xA0
bar"
,
"foo
\xA0
bar"
},
// Invalid unicode scalar value.
{
"foo
\xed\xa0\x80
bar"
,
"foo
\xed\xa0\x80
bar"
},
}
for
_
,
test
:=
range
tests
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment