Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html |
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html b/third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d1e1fc8bc176dce1c76686806245e74735100f58 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/external/wpt/apng/animated-png-timeout.html |
| @@ -0,0 +1,15 @@ |
| +<html class="reftest-wait"> |
| +<head> |
|
foolip
2017/04/12 04:55:20
It's OK, and some reviewers like me encourage, to
scroggo_chromium
2017/04/12 14:04:11
Done.
|
| +<title>APNG test: Second frame displays quickly, replacing red with green.</title> |
|
foolip
2017/04/12 04:55:20
uNit: Having "test" as part of the test descriptio
scroggo_chromium
2017/04/12 14:04:11
Done.
|
| +</head> |
| +<link rel="match" href="animated-png-timeout-expected.html"/> |
|
foolip
2017/04/12 04:55:20
Because of this syntax the name can be anything, b
scroggo_chromium
2017/04/12 14:04:11
Done.
|
| +<img src=../images/apng-test.png onload="loaded()"/> |
| +<script> |
| + function loaded() { |
| + setTimeout(function() { |
| + document.documentElement.classList.remove("reftest-wait"); |
| + }, 1000); |
| + } |
| +</script> |
| +</body> |
| +</html> |