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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/select-width-font-change.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (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/select-width-font-change.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select-width-font-change.html b/third_party/WebKit/LayoutTests/fast/forms/select-width-font-change.html
deleted file mode 100644
index a021d50bb34e0749ffd6fde3559462145659363a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/select-width-font-change.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<head>
-
-<script>
-
-function test()
-{
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var widthBefore = document.getElementById("select").offsetWidth;
- document.getElementById("select").setAttribute("style", "font-size: 32px");
- var widthAfter = document.getElementById("select").offsetWidth;
-
- if (widthAfter - widthBefore > 20)
- document.getElementById("result").innerHTML = "PASS: Resize seems to have worked.";
- else
- document.getElementById("result").innerHTML = "FAIL: Size is not enough bigger after the style change.";
-}
-
-</script>
-
-</head>
-
-<body onload="test()">
-
-<p>This test checks to see if changing the font of a select element causes it to resize to accomodate the larger text.</p>
-
-<p><select id="select" style="font-size: 9px">
-<option>This is an option with some text in it.</option>
-</select></p>
-
-<p id="result"></p>
-
-<body>

Powered by Google App Engine
This is Rietveld 408576698