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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider-expected.txt

Issue 1954423002: DevTools: introduce CSSStyleSheetHeader.originalContentProvider() method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simplify-network-project
Patch Set: address comments Created 4 years, 7 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: third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider-expected.txt b/third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7ce1182088faced94af5a5a12c7bef5c7940bf98
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider-expected.txt
@@ -0,0 +1,40 @@
+Verifies that CSSStyleSheetHeader.originalContentProvider() indeed returns original content.
+
+
+Running: testSetStyle
+== Original ==
+div { color: red; }
+== Current ==
+div {EDITED: EDITED}
+
+Running: testSetSelector
+== Original ==
+div {}
+== Current ==
+EDITED {}
+
+Running: testSetMedia
+== Original ==
+@media (all) { }
+== Current ==
+@media EDITED { }
+
+Running: testSetKeyframeKey
+== Original ==
+@keyframes animation { 100% { color: red; } }
+== Current ==
+@keyframes animation { from { color: red; } }
+
+Running: testAddRule
+== Original ==
+div {}
+== Current ==
+EDITED {}
+div {}
+
+Running: testSetStyleSheetText
+== Original ==
+div {}
+== Current ==
+EDITED {}
+

Powered by Google App Engine
This is Rietveld 408576698