-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathblock-string-assignment-to-Document-write.html
189 lines (167 loc) · 6 KB
/
block-string-assignment-to-Document-write.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/helper.sub.js"></script>
<meta http-equiv="Content-Security-Policy" content="require-trusted-types-for 'script';">
</head>
<body>
<script>
// TrustedHTML assignments do not throw.
let p = createHTML_policy(window, 1);
test(t => {
document.body.innerText = '';
let html = p.createHTML(INPUTS.HTML);
document.write(html);
assert_equals(document.body.innerText, RESULTS.HTML);
}, "document.write with html assigned via policy (successful URL transformation).");
test(t => {
document.body.innerText = '';
let a = p.createHTML("abcdef");
let b = p.createHTML("ghijkl");
document.write(a,b);
assert_equals(document.body.innerText, "abcdefghijkl");
}, "document.write with multiple trusted arguments.");
// TrustedHTML assignments do not throw. (Now for writeln.)
test(t => {
document.body.innerText = '';
let html = p.createHTML(INPUTS.HTML);
document.writeln(html);
assert_equals(document.body.innerText, RESULTS.HTML);
}, "document.writeln with html assigned via policy (successful URL transformation).");
test(t => {
document.body.innerText = '';
let a = p.createHTML("abcdef");
let b = p.createHTML("ghijkl");
document.writeln(a,b);
assert_equals(document.body.innerText, "abcdefghijkl");
}, "document.writeln with multiple trusted arguments.");
// String assignments throw.
test(t => {
const old = document.body.innerText;
assert_throws_js(TypeError, _ => {
document.write('A string');
});
assert_equals(document.body.innerText, old);
}, "`document.write(string)` throws");
test(t => {
const old = document.body.innerText;
assert_throws_js(TypeError, _ => {
let a = "abcdef";
let b = "ghijkl";
document.write(a, b);
});
assert_equals(document.body.innerText, old);
}, "`document.write(string, string)` throws");
test(t => {
const old = document.body.innerText;
assert_throws_js(TypeError, _ => {
let a = "abcdef";
let b = p.createHTML("ghijkl");
document.write(a, b);
});
assert_equals(document.body.innerText, old);
}, "`document.write(string, TrustedHTML)` throws");
// String assignments throw. (Now for writeln.)
test(t => {
const old = document.body.innerText;
assert_throws_js(TypeError, _ => {
document.writeln('A string');
});
assert_equals(document.body.innerText, old);
}, "`document.writeln(string)` throws");
test(t => {
const old = document.body.innerText;
assert_throws_js(TypeError, _ => {
let a = "abcdef";
let b = "ghijkl";
document.writeln(a, b);
});
assert_equals(document.body.innerText, old);
}, "`document.writeln(string, string)` throws");
test(t => {
const old = document.body.innerText;
assert_throws_js(TypeError, _ => {
let a = "abcdef";
let b = p.createHTML("ghijkl");
document.writeln(a, b);
});
assert_equals(document.body.innerText, old);
}, "`document.writeln(string, TrustedHTML)` throws");
// Null assignment throws.
test(t => {
const old = document.body.innerText;
assert_throws_js(TypeError, _ => {
document.write(null);
});
assert_equals(document.body.innerText, old);
}, "`document.write(null)` throws");
// Null assignment throws. (Now for writeln.)
test(t => {
const old = document.body.innerText;
assert_throws_js(TypeError, _ => {
document.writeln(null);
});
assert_equals(document.body.innerText, old);
}, "`document.writeln(null)` throws");
let default_policy = trustedTypes.createPolicy('default',
{ createHTML: (html, type, sink) => {
if (html === "assertSinkEqualsDocumentWrite") {
assert_equals(sink, "Document write");
} else if (html === "assertSinkEqualsDocumentWriteLn") {
assert_equals(sink, "Document writeln");
}
return html.replace("Hi", "Quack")
.replace("transformed", "a duck")
.replace("defghi", "zxcvbn")
} });
// Default policy works.
test(t => {
document.body.innerText = '';
document.write(INPUTS.HTML);
assert_equals(document.body.innerText, RESULTS.HTML);
}, "`document.write(string)` observes default policy");
test(t => {
document.body.innerText = '';
let a = "abcdef";
let b = "ghijkl";
document.write(a, b);
assert_equals(document.body.innerText, "abczxcvbnjkl");
}, "`document.write(string, string)` observes default policy");
test(t => {
document.body.innerText = '';
let a = "abcdef";
let b = p.createHTML("ghijkl");
document.write(a, b);
assert_equals(document.body.innerText, "abczxcvbnjkl");
}, "`document.write(string, TrustedHTML)` observes default policy");
test(t => {
document.body.innerText = '';
document.write("assertSinkEqualsDocumentWrite");
}, "`document.write` passes the correct sink string to the default policy");
// Default policy works. (Now for writeln.)
test(t => {
document.body.innerText = '';
document.writeln(INPUTS.HTML);
assert_equals(document.body.innerText, RESULTS.HTML);
}, "`document.writeln(string)` observes default policy");
test(t => {
document.body.innerText = '';
let a = "abcdef";
let b = "ghijkl";
document.writeln(a, b);
assert_equals(document.body.innerText, "abczxcvbnjkl");
}, "`document.writeln(string, string)` observes default policy");
test(t => {
document.body.innerText = '';
let a = "abcdef";
let b = p.createHTML("ghijkl");
document.writeln(a, b);
assert_equals(document.body.innerText, "abczxcvbnjkl");
}, "`document.writeln(string, TrustedHTML)` observes default policy");
test(t => {
document.body.innerText = '';
document.writeln("assertSinkEqualsDocumentWriteLn");
}, "`document.writeln` passes the correct sink string to the default policy");
</script>