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

Unified Diff: third_party/WebKit/LayoutTests/fast/html/details-add-summary-2-and-click.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-add-summary-2-and-click.html
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-add-summary-2-and-click.html b/third_party/WebKit/LayoutTests/fast/html/details-add-summary-2-and-click.html
deleted file mode 100644
index 40ca5fe94ec391ba8fae45aa28bf830f09a40b95..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/html/details-add-summary-2-and-click.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<script>
-
-var createNewElement = function (tag, id, text) {
- var result = document.createElement(tag);
- result.setAttribute('id',id);
- result.innerHTML = text;
- return result;
-};
-
-var runTests = function () {
- document.getElementById("dt1").appendChild(createNewElement("summary", "new1", "new 1"));
- document.getElementById("dt1").appendChild(createNewElement("summary", "new2", "new 2"));
-
- if (!window.testRunner || !window.eventSender)
- return;
- eventSender.mouseMoveTo(2, 2);
- eventSender.mouseDown();
- eventSender.mouseUp();
-};
-
-</script>
-
-<body style="margin: 0px" onload="runTests()">
- <details id="dt1"></details>
-</body>
-

Powered by Google App Engine
This is Rietveld 408576698