Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> | |
| 3 <div style="writing-mode: vertical-rl;"> | |
| 4 <ruby id="outside">b<rt id="inside">c</rt></ruby> | |
|
chrishtr
2016/07/15 01:24:29
Could you quickly summarize the flips that occur h
wkorman
2016/07/15 01:59:23
I think all of the general cases are fine. The pro
| |
| 5 </div> | |
| 6 <script> | |
| 7 // Tests that ruby text paint invalidation in flipped-blocks writing mode works | |
| 8 // correctly. The result should be vertical text as a pink "b" with a smaller | |
| 9 // blue "c" to the right of it. | |
| 10 onload = runRepaintTest; | |
| 11 function repaintTest() { | |
| 12 outside.style.color = "pink"; | |
| 13 inside.style.color = "blue"; | |
| 14 } | |
| 15 </script> | |
| OLD | NEW |