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

Unified Diff: LayoutTests/svg/css/display-expected.html

Issue 379463002: Display property as specified on svg elements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « LayoutTests/svg/css/display-computed.html ('k') | Source/core/css/CSSProperties.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/css/display-expected.html
diff --git a/LayoutTests/svg/css/display-expected.html b/LayoutTests/svg/css/display-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..3fa5645a500976af51724e8efa61855b3f543bae
--- /dev/null
+++ b/LayoutTests/svg/css/display-expected.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<style>
+img {
+ width: 20px;
+ height: 20px;
+ background: green;
+}
+
+.table { display: table }
+
+#t1 { display: inline }
+#t2 { display: block; }
+#t3 { display: inline-block; }
+#t4 { display: inline-table; }
+#t5 { display: table; }
+#t6 { display: table-cell; }
+</style>
+<img id="t1" src="../../css2.1/support/1x1-transparent.png">
+<img id="t2" src="../../css2.1/support/1x1-transparent.png">
+<img id="t3" src="../../css2.1/support/1x1-transparent.png">
+<img id="t4" src="../../css2.1/support/1x1-transparent.png">
+<img id="t5" src="../../css2.1/support/1x1-transparent.png">
+<div class="table">
+ &nbsp;
+ <img id="t6" src="../../css2.1/support/1x1-transparent.png">
+</div>
« no previous file with comments | « LayoutTests/svg/css/display-computed.html ('k') | Source/core/css/CSSProperties.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698