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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/legend-display-none.html

Issue 1528823002: Move tests related to <fieldset> and <legend> to fast/forms/fieldset. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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/forms/legend-display-none.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/legend-display-none.html b/third_party/WebKit/LayoutTests/fast/forms/legend-display-none.html
deleted file mode 100644
index a913f0155a74f9b292fb0b9c278d70a8d1ada9b2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/legend-display-none.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<p>
- Test that specifying <tt>display: none</tt> for a <tt>legend</tt> element works.
-</p>
-<p id="result">
-</p>
-<fieldset>
- <legend id="target" style="display: none;">Legendary</legend>
-</fieldset>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- document.body.offsetTop;
- display = getComputedStyle(document.getElementById("target")).display;
- document.getElementById("result").innerText = display === "none" ? "PASS" : ("FAIL: display was '" + display + "'.");
-</script>

Powered by Google App Engine
This is Rietveld 408576698