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

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: Fixed ASSERT_NOT_REACH in linux_blink_dbg Created 6 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: 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..efea75559e7bd3c7dac5f26b52838fd73d3d7086
--- /dev/null
+++ b/LayoutTests/fast/css/all-shorthand-expected.html
@@ -0,0 +1,50 @@
+<!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; }
+
+#target6 { display: initial; color: initial; background: initial; }
+
+#target7 { display: initial; direction: rtl; }
+
+#target8 { display: initial; direction: rtl; }
+
+#parent9 { color: green; }
+#target9 { display: initial; color: inherit; }
+</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>
+
+ <div id='target6'>not red color</div>
+
+ <div id='target7'>direction is rtl</div>
+
+ <div id='target8'>direction is rtl</div>
+
+ <div id='parent9'>
+ <div id='target9'>green color</div>
+ </div>
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698