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

Unified 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, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/dom/DOMParser-marquee-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/DOMParser-marquee-crash.html b/third_party/WebKit/LayoutTests/fast/dom/DOMParser-marquee-crash.html
deleted file mode 100644
index 992515d482cd933dfffbe6d5b2ba89529c071ce2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/DOMParser-marquee-crash.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<script>
-function runTests() {
- if (window.testRunner) testRunner.dumpAsText();
-
- var parser = new DOMParser();
- parser.parseFromString("<marquee></marquee>", "text/html");
-}
-</script>
-</head>
-<body onload="runTests();">
-This creates a DOMParser object and tries to parse a document containing a marquee element (implemented in Private JS).
-If the test is successful, it should not crash.
-<pre id="console">
-</pre>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698