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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/fallback-content.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/canvas/fallback-content.html
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/fallback-content.html b/third_party/WebKit/LayoutTests/fast/canvas/fallback-content.html
index c3c69f41ef2ae5e05f0255d620ec0076b5426482..699aecb4bdd6b9ea038d7d01795cd2546386320a 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/fallback-content.html
+++ b/third_party/WebKit/LayoutTests/fast/canvas/fallback-content.html
@@ -2,7 +2,7 @@
<html>
<body>
<script src="../../resources/js-test.js"></script>
-
+<div id="container">
<div>
<a id="link1" href="#">Link</a>
<button id="button1">Button</button>
@@ -34,7 +34,7 @@
<canvas hidden id="hiddenCanvas" width="300" height="300">
<a id="linkInHiddenCanvas" href="#">Link</a>
</canvas>
-
+</div>
<div id="console"></div>
<script>
description("This test makes sure that focusable elements in canvas fallback content are focusable.");
@@ -87,6 +87,7 @@ function checkNotFocusable(id) {
checkNotFocusable("linkInHiddenCanvas");
+document.querySelector("#container").remove();
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698