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

Unified Diff: third_party/WebKit/LayoutTests/fast/html/details-replace-summary-child.html

Issue 2670273002: Move tests for DETAILS and SUMMARY elements to html/details_summary/. (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/html/details-replace-summary-child.html
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-replace-summary-child.html b/third_party/WebKit/LayoutTests/fast/html/details-replace-summary-child.html
deleted file mode 100644
index 53c6dd4a1abb70975a9c412b6c84827d824df368..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/html/details-replace-summary-child.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<html>
-<head>
-<style>
-span { display: inline-block; font-family: monospace; }
-</style>
-<script>
-function test()
-{
- var s2 = document.getElementById("s2");
- var s3 = document.createElement("span");
- s3.innerHTML = "Details3";
- var parent = s2.parentNode;
- parent.replaceChild(s3, s2);
-}
-
-function runTest()
-{
- if (window.testRunner)
- document.getElementById("run").click();
-}
-</script>
-<body onload="runTest()">
-<details open>
- <summary>
- <span id="s1">Details1</span>
- <span id="s2">Details2</span>
- </summary>
-</details>
-<input id="run" type="button" value="click" onclick="test()">
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698