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

Unified Diff: LayoutTests/svg/css/display.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 | « no previous file | LayoutTests/svg/css/display-computed.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/css/display.html
diff --git a/LayoutTests/svg/css/display.html b/LayoutTests/svg/css/display.html
new file mode 100644
index 0000000000000000000000000000000000000000..651f96e183072ee31f233a4d4ea1bd2c56af9de6
--- /dev/null
+++ b/LayoutTests/svg/css/display.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<style>
+svg {
+ 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>
+<svg id="t1"></svg>
+<svg id="t2"></svg>
+<svg id="t3"></svg>
+<svg id="t4"></svg>
+<svg id="t5"></svg>
+<div class="table">
+ &nbsp;
+ <svg id="t6"></svg>
+</div>
« no previous file with comments | « no previous file | LayoutTests/svg/css/display-computed.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698