summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-radius/border-value-interpret-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/border-radius/border-value-interpret-ref.html')
-rw-r--r--layout/reftests/border-radius/border-value-interpret-ref.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/border-radius/border-value-interpret-ref.html b/layout/reftests/border-radius/border-value-interpret-ref.html
new file mode 100644
index 0000000000..c9a42716b0
--- /dev/null
+++ b/layout/reftests/border-radius/border-value-interpret-ref.html
@@ -0,0 +1,21 @@
+<!doctype html>
+<html>
+ <head>
+ <title>Test different types of values with border radius</title>
+ <!-- This bug will break when bug 451134 is fixed -->
+ <style>
+ div { width: 200px;
+ height: 200px;
+ background: green;
+ border: 10px dashed black;
+ border-top-left-radius: 2em 10px;
+ border-top-right-radius: 10px 0.5em;
+ border-bottom-right-radius: 3em 10px;
+ border-bottom-left-radius: 10px 0.5em;
+ }
+
+</style>
+</head>
+<body>
+ <div></div>
+</body></html>