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

Unified Diff: LayoutTests/inspector/elements/styles/styles-add-new-rule-colon.html

Issue 458213002: DevTools: add test to verify simple selector behavior. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: WebInspector.BlankStylePropertiesSection.makeNormal is private Created 6 years, 4 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/inspector/elements/styles/styles-add-new-rule-colon.html
diff --git a/LayoutTests/inspector/elements/styles/styles-add-new-rule-colon.html b/LayoutTests/inspector/elements/styles/styles-add-new-rule-colon.html
index b17e01770e67a6ff66366b37b590b49946d19f42..ceb346d2300b0c934574dfcd5bf54b5ea99a5fd2 100644
--- a/LayoutTests/inspector/elements/styles/styles-add-new-rule-colon.html
+++ b/LayoutTests/inspector/elements/styles/styles-add-new-rule-colon.html
@@ -22,11 +22,7 @@ function test()
function step1()
{
// Click "Add new rule".
- document.getElementById("add-style-button-test-id").click();
- var section = WebInspector.panels.elements.sidebarPanes.styles.sections[0][2];
- section._selectorElement.textContent = "foo, " + section._selectorElement.textContent + ", bar";
- section._selectorElement.dispatchEvent(InspectorTest.createKeyEvent("Enter"));
- InspectorTest.runAfterPendingDispatches(step2);
+ InspectorTest.addNewRule("foo, div#inspected, bar", step2);
}
function step2()

Powered by Google App Engine
This is Rietveld 408576698