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

Unified Diff: LayoutTests/inspector-protocol/css/css-create-stylesheet-and-add-rule-expected.txt

Issue 441873010: DevTools: [SSP] Implement adding new rule in user stylesheet (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix compilation error 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-protocol/css/css-create-stylesheet-and-add-rule-expected.txt
diff --git a/LayoutTests/inspector-protocol/css/css-create-stylesheet-and-add-rule-expected.txt b/LayoutTests/inspector-protocol/css/css-create-stylesheet-and-add-rule-expected.txt
index 78524ff225a4336ffad2f167455463698410a35f..ab96e8d39015808c056a0dc8be3fddbe0cc0f2ce 100644
--- a/LayoutTests/inspector-protocol/css/css-create-stylesheet-and-add-rule-expected.txt
+++ b/LayoutTests/inspector-protocol/css/css-create-stylesheet-and-add-rule-expected.txt
@@ -5,20 +5,26 @@ Dumping matched rules:
color: red;
}
Adding a rule to the existing stylesheet.
+==== Style sheet text ====
+#inspected {}#inspected {
+ color: red;
+}
Dumping matched rules:
*#inspected* { regular
- color: red;
}
*#inspected* { regular
+ color: red;
}
Creating inspector stylesheet.
Style sheet added: inspector
Adding a rule to the inspector stylesheet.
+==== Style sheet text ====
+#inspected {}
Dumping matched rules:
*#inspected* { regular
- color: red;
}
*#inspected* { regular
+ color: red;
}
*#inspected* { inspector
}

Powered by Google App Engine
This is Rietveld 408576698