Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(615)

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/first-line-with-first-letter.html

Issue 2729373003: Bit-mask incorrectly removed first-line pseudo bit. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/first-line-with-first-letter-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #t1::first-letter { color: white }
4 #t1::first-line { background: red }
5 #t1.green::first-line { background: green }
6 </style>
7 <div id="t1">
8 First letter should be white, and the first line should have a green
9 background.
10 </div>
11 <script>
12 if (window.testRunner)
13 testRunner.waitUntilDone();
14
15 requestAnimationFrame(() =>
16 requestAnimationFrame(() => {
17 t1.className = "green";
18 if (window.testRunner)
19 testRunner.notifyDone();
20 }));
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.
21 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/paint/invalidation/first-line-with-first-letter-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698