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

Unified Diff: third_party/WebKit/LayoutTests/fast/html/details-marker-style.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-marker-style.html
diff --git a/third_party/WebKit/LayoutTests/fast/html/details-marker-style.html b/third_party/WebKit/LayoutTests/fast/html/details-marker-style.html
deleted file mode 100644
index 8d456698f38f2771175a789bde05970f721cf97e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/html/details-marker-style.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-<body>
-<style>
-summary.withpadding::-webkit-details-marker {
- padding: 8px 16px 24px 32px;
- border-width: 8px 16px 24px 32px;
- border-style: solid;
- border-color: lime;
-}
-
-summary.nopadding::-webkit-details-marker {
- border: 8px solid lime;
- width: 48px;
- height: 24px;
-}
-
-details {
- font-size: 24px;
-}
-</style>
-<div style="-webkit-writing-mode: horizontal-tb;">
-<details><summary class="withpadding">Summary</summary></details>
-</div>
-<div style="-webkit-writing-mode: vertical-rl; -webkit-text-orientation: sideways-right;">
-<details><summary class="withpadding">Summary</summary></details>
-</div>
-
-<div style="-webkit-writing-mode: horizontal-tb;">
-<details><summary class="nopadding">Summary</summary></details>
-</div>
-<div style="-webkit-writing-mode: vertical-rl; -webkit-text-orientation: sideways-right;">
-<details><summary class="nopadding">Summary</summary></details>
-</div>
-</body>
-

Powered by Google App Engine
This is Rietveld 408576698