Chromium Code Reviews| Index: third_party/WebKit/Source/web/tests/data/frameserialization/script_in_attributes.html |
| diff --git a/third_party/WebKit/Source/web/tests/data/frameserialization/script_in_attributes.html b/third_party/WebKit/Source/web/tests/data/frameserialization/script_in_attributes.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..dbdd90a0575876de072eb7e375578bb7cbb68436 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/web/tests/data/frameserialization/script_in_attributes.html |
| @@ -0,0 +1,11 @@ |
| +<html> |
| +<meta charset="utf8"> |
| +<body onload="foo();"> |
|
tkent
2016/11/30 08:10:17
Please add a test for upper-case attributes. e.g.
jianli
2016/12/01 01:52:35
Done.
|
| +<a class="link" href="javascript:foo();" onclick="bar();">Link</a> |
| +<svg xmlns="http://www.w3.org/2000/svg"> |
| + <rect id="rect" height="100" fill="green"> |
| + <animate attributeName="width" from="javascript:foo();" to="javascript:bar();" /> |
| + </rect> |
| +</svg> |
| +</body> |
| +</html> |