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

Unified Diff: LayoutTests/inspector/styles/protocol-css-regions-commands.html

Issue 17848002: Web Inspector: Integrate new regionOversetChange event into inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
« no previous file with comments | « no previous file | LayoutTests/inspector/styles/protocol-css-regions-commands-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/styles/protocol-css-regions-commands.html
diff --git a/LayoutTests/inspector/styles/protocol-css-regions-commands.html b/LayoutTests/inspector/styles/protocol-css-regions-commands.html
index 6fc3f57d4d2f040715eccd4961aa28965a932842..170820034d638833f536d556439244fc8231c1a4 100644
--- a/LayoutTests/inspector/styles/protocol-css-regions-commands.html
+++ b/LayoutTests/inspector/styles/protocol-css-regions-commands.html
@@ -176,19 +176,19 @@ function test()
}
},
- function testRegionLayoutUpdated(next)
+ function testRegionOversetChanged(next)
{
- WebInspector.cssModel.addEventListener(WebInspector.CSSStyleModel.Events.RegionLayoutUpdated, callback, this);
- InspectorTest.evaluateInPage("window.document.getElementById(\"region3\").style[\"width\"] = \"200px\"");
+ WebInspector.cssModel.addEventListener(WebInspector.CSSStyleModel.Events.RegionOversetChanged, callback, this);
+ InspectorTest.evaluateInPage("window.document.getElementById(\"region3\").style.webkitFlowFrom=\"flow3\"");
function callback(event)
{
if (event.data.name !== "flow3")
return;
- WebInspector.cssModel.removeEventListener(WebInspector.CSSStyleModel.Events.RegionLayoutUpdated, callback, this);
+ WebInspector.cssModel.removeEventListener(WebInspector.CSSStyleModel.Events.RegionOversetChanged, callback, this);
- InspectorTest.addResult("RegionLayoutUpdated: \"flow3\"");
+ InspectorTest.addResult("RegionOversetChanged: \"flow3\"");
next();
}
},
@@ -229,7 +229,7 @@ Tests the following commands and events:
<li>getFlowByName <a href="https://bugs.webkit.org/show_bug.cgi?id=91855">Bug 91855</a></li>
<li>namedFlowCreated <a href="https://bugs.webkit.org/show_bug.cgi?id=92739">Bug 92739</a></li>
<li>namedFlowRemoved <a href="https://bugs.webkit.org/show_bug.cgi?id=92739">Bug 92739</a></li>
- <li>regionLayoutUpdated <a href="https://bugs.webkit.org/show_bug.cgi?id=93443">Bug 93443</a></li>
+ <li>regionOversetChanged <a href="https://code.google.com/p/chromium/issues/detail?id=252250">Bug 252250</a></li>
</ul>
</p>
@@ -245,7 +245,7 @@ Tests the following commands and events:
<article style="-webkit-flow-into: flow3">
This text is from CSS Named Flow "flow3".
</article>
-<div id="region3" style="-webkit-flow-from: flow3; height: 20px; width: 5px"></div>
+<div id="region3" style="-webkit-flow-from: none; height: 20px; width: 5px"></div>
<div id="fake-document"></div>
« no previous file with comments | « no previous file | LayoutTests/inspector/styles/protocol-css-regions-commands-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698