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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/resources/diff-before.css

Issue 2381953004: DevTools: Add test for SourceCodeDiff (Closed)
Patch Set: Simpler test file Created 4 years, 3 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/sources/resources/diff-before.css
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/resources/diff-before.css b/third_party/WebKit/LayoutTests/inspector/sources/resources/diff-before.css
new file mode 100644
index 0000000000000000000000000000000000000000..c5f8dbb5807138a450ac3bc6fd395f99a3d6641c
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/resources/diff-before.css
@@ -0,0 +1,31 @@
+.will-be-deleted-but-will-show-modified-because-first-line {
+ width: 10px;
+ height: 10px;
+}
+
+.stays-the-same {
+ font-size: 10px;
+ font-family: sans-serif;
+}
+
+.will-be-modified {
+ height: 100000%;
+}
+
+.stays-the-same2 {
+ font-size: 10px;
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+.stays-the-same3 {
+ font-size: 15px;
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+.will-lose-properties {
+ background: #000;
+ background: #400;
+ background: #800;
+ background: #B00;
+ background: #F00;
+}

Powered by Google App Engine
This is Rietveld 408576698