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

Unified Diff: LayoutTests/fast/regions/hover-single-flow-into-other.html

Issue 16951003: Fix broken AttachContext from r152289 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed failing test (/fast/forms/file/input-file-re-render.html) Created 7 years, 6 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: LayoutTests/fast/regions/hover-single-flow-into-other.html
diff --git a/LayoutTests/fast/regions/hover-single-flow-into-other.html b/LayoutTests/fast/regions/hover-single-flow-into-other.html
index 679d31e008b1bdc8eb98245cd76b8ac031058f5a..99718eccb1cb126db99421a171f611f26556c900 100644
--- a/LayoutTests/fast/regions/hover-single-flow-into-other.html
+++ b/LayoutTests/fast/regions/hover-single-flow-into-other.html
@@ -59,10 +59,18 @@
}
</script>
+<script type="text/javascript">
+ function elementHovered() {
+ if (window.testRunner)
+ document.getElementById("content").style.webkitFlowInto = "flow2";
+ }
+</script>
+
+
<body onload="beginTest()">
<p>When hovering the <span style="color:blue"><b>blue box</b></span>, it should move to the <span style="color:darkred"><b>second region</b></span> (it's <b>flow-into</b> will change to the 2nd thread)</p>
<div id="region1"></div>
<div id="region2"></div>
- <div id="content" class="box">This box is flowed into the <span style="color:green"><b>first region</b></span> when it is <b>not</b> hovered and into the <span style="color:darkred"><b>second region</b></span> when it <b>is</b></div>
+ <div id="content" class="box" onmouseover="elementHovered()">This box is flowed into the <span style="color:green"><b>first region</b></span> when it is <b>not</b> hovered and into the <span style="color:darkred"><b>second region</b></span> when it <b>is</b></div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698