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

Unified Diff: LayoutTests/inspector-protocol/css/resources/add-rule.css

Issue 441873010: DevTools: [SSP] Implement adding new rule in user stylesheet (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: minor changes 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/resources/add-rule.css
diff --git a/LayoutTests/inspector-protocol/css/resources/add-rule.css b/LayoutTests/inspector-protocol/css/resources/add-rule.css
new file mode 100644
index 0000000000000000000000000000000000000000..7fc335df81d7a7cf1cd6f097397c66f05d8f5d7a
--- /dev/null
+++ b/LayoutTests/inspector-protocol/css/resources/add-rule.css
@@ -0,0 +1,21 @@
+#test {
+ box-sizing: border-box;
+}
+
+#test {
+ /* resetting some properties */
+ line-height: 1;
+ font-family: "Arial";
+ color: blue;
+ display: flex; /* flex FTW! */
+}
+
+@media (min-width: 1px) {
+ #test {
+ font-size: 200%;
+ }
+
+ #test {
+ }
+}
+

Powered by Google App Engine
This is Rietveld 408576698