Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <meta charset="utf8"> | |
| 3 <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.
| |
| 4 <a class="link" href="javascript:foo();" onclick="bar();">Link</a> | |
| 5 <svg xmlns="http://www.w3.org/2000/svg"> | |
| 6 <rect id="rect" height="100" fill="green"> | |
| 7 <animate attributeName="width" from="javascript:foo();" to="javascript:bar() ;" /> | |
| 8 </rect> | |
| 9 </svg> | |
| 10 </body> | |
| 11 </html> | |
| OLD | NEW |