Index: LayoutTests/transitions/cross-fade-background-image.html |
diff --git a/LayoutTests/transitions/cross-fade-background-image.html b/LayoutTests/transitions/cross-fade-background-image.html |
index 884993848440729b4d431dad861faea487dd31a9..d87682673081bb11716cf2750edb9765e61bc069 100644 |
--- a/LayoutTests/transitions/cross-fade-background-image.html |
+++ b/LayoutTests/transitions/cross-fade-background-image.html |
@@ -29,14 +29,19 @@ |
background: url('../fast/backgrounds/repeat/resources/nav.blue.gif'); |
} |
+ #boxStatic { |
+ background-image: -webkit-cross-fade(url('../fast/backgrounds/repeat/resources/gradient.gif'), |
+ url('../fast/backgrounds/repeat/resources/nav.blue.gif'), 0.5); |
+ } |
+ |
</style> |
<script src="../animations/resources/animation-test-helpers.js" type="text/javascript"></script> |
<script> |
const expectedValues = [ |
// [time, element-id, property, expected-value, tolerance] |
- [0.5, 'box', 'background-image', 0.5, 0.05], |
- [0.5, 'boxShorthand', 'background-image', 0.5, 0.05], |
+ [0.5, ['box', 'boxStatic'], 'background-image', null, 0.05], |
+ [0.5, ['boxShorthand', 'boxStatic'], 'background-image', null, 0.05], |
]; |
function setupTest() |
@@ -51,6 +56,7 @@ |
<body> |
<div id="box" class="box"></div> |
<div id="boxShorthand" class="box"></div> |
+ <div id="boxStatic" class="box"></div> |
<div id="result"></div> |
</body> |