diff options
Diffstat (limited to 'tests/wpt/css-tests/css-animations-1_dev/html/animation-delay-005.htm')
-rw-r--r-- | tests/wpt/css-tests/css-animations-1_dev/html/animation-delay-005.htm | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/tests/wpt/css-tests/css-animations-1_dev/html/animation-delay-005.htm b/tests/wpt/css-tests/css-animations-1_dev/html/animation-delay-005.htm deleted file mode 100644 index 80d8ccd18c7..00000000000 --- a/tests/wpt/css-tests/css-animations-1_dev/html/animation-delay-005.htm +++ /dev/null @@ -1,43 +0,0 @@ -<!DOCTYPE html> -<html><head><meta charset="utf-8"> -<title>CSS Animations Test: animation-delay - ::before</title> -<link href="http://www.intel.com" rel="author" title="Intel"> -<link href="mailto:zhiqiang.zhang@intel.com" rel="reviewer" title="Zhiqiang Zhang"> <!-- 2015-03-18 --> -<link href="http://dev.w3.org/csswg/css-animations-1/#animation-delay" rel="help"> -<link href="http://dev.w3.org/csswg/css-animations-1/#animation-name" rel="help"> -<link href="http://dev.w3.org/csswg/css-animations-1/#animation-duration" rel="help"> -<meta content="animated" name="flags"> -<meta content="Check that animation-delay applies to the ::before pseudo element." name="assert"> -<style> - div::before { - animation-name: sample; - animation-duration: 5s; - animation-delay: 5s; - - background-color: blue; - content: "Filler Text"; - display: block; - height: 100px; - width: 100px; - position: relative; - } - - @keyframes sample { - from { - left: 150px; - } - to { - left: 0px; - } - } -</style> -</head><body> - <p> - Test passes if there is a filled blue square with 'Filler Text', - which starts moving from right to left after about 5 seconds - from the time the page is loaded. - </p> - <div></div> - - -</body></html>
\ No newline at end of file |