Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/paint/invalidation/first-line-with-first-letter.html |
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/first-line-with-first-letter.html b/third_party/WebKit/LayoutTests/paint/invalidation/first-line-with-first-letter.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..39d1237ef08b388869eb9d4424696448c9925807 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/first-line-with-first-letter.html |
| @@ -0,0 +1,21 @@ |
| +<!DOCTYPE html> |
| +<style> |
| + #t1::first-letter { color: white } |
| + #t1::first-line { background: red } |
| + #t1.green::first-line { background: green } |
| +</style> |
| +<div id="t1"> |
| + First letter should be white, and the first line should have a green |
| + background. |
| +</div> |
| +<script> |
| + if (window.testRunner) |
| + testRunner.waitUntilDone(); |
| + |
| + requestAnimationFrame(() => |
| + requestAnimationFrame(() => { |
| + t1.className = "green"; |
| + if (window.testRunner) |
| + testRunner.notifyDone(); |
| + })); |
|
meade_UTC10
2017/03/06 02:58:29
Nit: I think this should all be 2-indented...
rune
2017/03/06 09:51:18
Done.
|
| +</script> |