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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/form-radio-img-node-list.html

Issue 2560733002: SELECT element: Fix a bug that intrinsic width is too narrow in less-than-100% zoom level. (Closed)
Patch Set: PartScrollbarVerticalTrack -> PartScrollbarDownArrow to fix Android crash Created 4 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/form-radio-img-node-list.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/form-radio-img-node-list.html b/third_party/WebKit/LayoutTests/fast/forms/form-radio-img-node-list.html
index 1f4d6282234d696ded5b75193ba2f5ae8cbed667..616aff840f98d557b26a3e6b6e6746e3e38ac8d5 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/form-radio-img-node-list.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/form-radio-img-node-list.html
@@ -1,5 +1,6 @@
<!doctype html>
<script src="../../resources/js-test.js"></script>
+<div id="container">
<img name=outside1></img>
<form id="f1">
<button id=n1></button>
@@ -17,6 +18,7 @@
</form>
<!-- The img element isn't 'reassociatable'; add @form to verify it is so. -->
<img name=n2 form=f1></img>
+</div>
<script>
description("Test RadioNodeLists returned by the HTMLFormElement named-getter.");
@@ -47,4 +49,6 @@ var img = document.createElement("img");
img.name = "n2";
form.appendChild(img);
verifyLength(3);
+
+document.querySelector("#container").remove();
</script>

Powered by Google App Engine
This is Rietveld 408576698