Chromium Code Reviews

Unified Diff: LayoutTests/svg/custom/rgba-color-outline-expected.html

Issue 261773008: [SVG2] css 'outline' property should apply to svg elements (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: moar tests Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: LayoutTests/svg/custom/rgba-color-outline-expected.html
diff --git a/LayoutTests/svg/custom/rgba-color-outline-expected.html b/LayoutTests/svg/custom/rgba-color-outline-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..77396df794b1688ef94d6cd9f5b7165f59374cf9
--- /dev/null
+++ b/LayoutTests/svg/custom/rgba-color-outline-expected.html
@@ -0,0 +1,13 @@
+<!doctype html>
+<style>
+* { padding: 0; margin: 0; }
+div { position: absolute;
+ top: 50px;
+ left: 50px;
+ width:1px;
+ height:1px;
+ background: rgba(0,0,255,0.5);
+ outline: 50px solid rgba(0,0,255,0.5); }
+ }
+</style>
+<div></div>

Powered by Google App Engine