| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <body> | |
| 3 <style> | |
| 4 span { | |
| 5 border: none; | |
| 6 display: inline-block; | |
| 7 font: -webkit-small-control; | |
| 8 margin: 2px; | |
| 9 padding: 2px; | |
| 10 color: black; | |
| 11 background-color: white; | |
| 12 } | |
| 13 .color { | |
| 14 width: 44px; | |
| 15 height: 23px; | |
| 16 } | |
| 17 .date { | |
| 18 font-family: monospace; | |
| 19 } | |
| 20 .hidden { | |
| 21 display: none; | |
| 22 } | |
| 23 </style> | |
| 24 <div><span class="button">Shadow!Content</span></div> | |
| 25 <div><span class="checkbox">Shadow!Content</span></div> | |
| 26 <div><span class="color">Shadow!Content</span></div> | |
| 27 <div><span class="date">Shadow!Content</span></div> | |
| 28 <div><span class="file">Shadow!Content</span></div> | |
| 29 <div><span class="hidden">Shadow!Content</span></div> | |
| 30 <div><span class="number">Shadow!Content</span></div> | |
| 31 <div><span class="radio">Shadow!Content</span></div> | |
| 32 <div><span class="range">Shadow!Content</span></div> | |
| 33 <div><span class="search">Shadow!Content</span></div> | |
| 34 <div><span class="text" tabindex=0>Shadow!Content</span></div> | |
| 35 <script>document.querySelector('.text').focus();</script> | |
| 36 </body> | |
| OLD | NEW |