Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
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
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
src/pkg/exp/template/html/js.go
src/pkg/exp/template/html/js.go
+2
-4
src/pkg/exp/template/html/js_test.go
src/pkg/exp/template/html/js_test.go
+7
-3
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