summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-animations/animate-display-table-opacity.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/css-animations/animate-display-table-opacity.html')
-rw-r--r--layout/reftests/css-animations/animate-display-table-opacity.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layout/reftests/css-animations/animate-display-table-opacity.html b/layout/reftests/css-animations/animate-display-table-opacity.html
new file mode 100644
index 0000000000..0d03054938
--- /dev/null
+++ b/layout/reftests/css-animations/animate-display-table-opacity.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<title>Testcase for bug 1245075</title>
+<style>
+@keyframes HoldOpacity {
+ from, to { opacity: 0.6 }
+}
+#test {
+ width: 100px; height: 100px;
+ background: blue;
+ display: table;
+ animation: HoldOpacity 100s linear infinite;
+}
+</style>
+<div id="test"></div>