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

Unified Diff: third_party/WebKit/LayoutTests/fast/html/details-position.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-position.html
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-position.html b/third_party/WebKit/LayoutTests/fast/html/details-position.html
deleted file mode 100644
index 03aefbf9dc6723fb62cada5b06bf5228873c8928..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/html/details-position.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<style>
-body { overflow: hidden; }
-
-summary.fixed {
- position: fixed;
- left: 50px;
- top: 150px;
-}
-
-summary.relative {
- position: relative;
- left: 150px;
- top: 150px;
-}
-
-summary.absolute {
- position: absolute;
- left: 250px;
- top: 150px;
-}
-
-</style>
-
-<body>
- <details>
- <summary class="fixed">fixed</summary>
- <input>
- </details>
- <details>
- <summary class="relative">relative</summary>
- <input>
- </details>
- <details>
- <summary class="absolute">absolute</summary>
- <input>
- </details>
-</body>

Powered by Google App Engine
This is Rietveld 408576698