Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 .class1 { | |
| 4 background-color: rgba(63, 128, 33, 0.95); | |
| 5 color: yellow; | |
| 6 } | |
| 7 .class2 { | |
| 8 background-color: rgba(255, 0, 0, 0.95); | |
| 9 color: green; | |
| 10 } | |
| 11 </style> | |
| 12 <span class='class1'>DOM </span> | |
| 13 <span class='class2'>Shadow DOM </span> | |
| 14 <span class='class1'>DOM</span> | |
| 15 <div> | |
| 16 Above Textual Selection should have Green background and yellow color on "DO M" <br> | |
| 17 and Red background, Green color on "Shadow DOM". | |
| 18 </div> | |
| OLD | NEW |