Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(652)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/DOMParser-marquee-crash.html

Issue 2667303004: Move tests for DOMParser and XMLSerializer to dom/domparsing/. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <html>
4 <head>
5 <script>
6 function runTests() {
7 if (window.testRunner) testRunner.dumpAsText();
8
9 var parser = new DOMParser();
10 parser.parseFromString("<marquee></marquee>", "text/html");
11 }
12 </script>
13 </head>
14 <body onload="runTests();">
15 This creates a DOMParser object and tries to parse a document containing a marqu ee element (implemented in Private JS).
16 If the test is successful, it should not crash.
17 <pre id="console">
18 </pre>
19 </body>
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698