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

Unified Diff: LayoutTests/fast/css/all-shorthand-expected.html

Issue 216803002: Implement all shorthand property. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated css-properties-as-js-properties-expected.txt Created 6 years, 9 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/fast/css/all-shorthand-expected.html
diff --git a/LayoutTests/fast/css/all-shorthand-expected.html b/LayoutTests/fast/css/all-shorthand-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..1b74bafd74b9f07b0c68da2656b8e2b24c4a4e3f
--- /dev/null
+++ b/LayoutTests/fast/css/all-shorthand-expected.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+#target1 { display: initial; color: green; background: initial; }
+
+#parent { color: green; }
+#target2 { display: inherit; color: inherit; background: inherit; }
+
+#target3 { display: initial; color: green; background: initial; }
+
+#target4 { display: initial; color: initial; background: initial; }
+
+#target5 { display: initial; color: green; background: initial; }
+</style>
+</head>
+<body>
+ <div id='target1'>green color, no background-color</div>
+
+ <div id='parent'>
+ <div id='target2'>green color, no background-color</div>
+ </div>
+
+ <div id='target3'>green color</div>
+
+ <div id='target4'>not red color</div>
+
+ <div id='target5'>green color, no background-color</div>
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698