OLD | NEW |
1 <!DOCTYPE> | 1 <!DOCTYPE> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
6 <title>Opacity on inline</title> | 6 <title>Opacity on inline</title> |
7 <style type="text/css" media="screen"> | 7 <style type="text/css" media="screen"> |
8 #fader { | 8 #fader { |
9 -webkit-transition: opacity 1s; | 9 -webkit-transition: opacity 1s; |
10 border: 1px solid black; | 10 border: 1px solid black; |
(...skipping 11 matching lines...) Expand all Loading... |
22 var testSpan = document.getElementById('fader'); | 22 var testSpan = document.getElementById('fader'); |
23 testSpan.className = 'faded'; | 23 testSpan.className = 'faded'; |
24 }, false); | 24 }, false); |
25 </script> | 25 </script> |
26 </head> | 26 </head> |
27 <body> | 27 <body> |
28 | 28 |
29 <p>This should not assert in debug builds</p> | 29 <p>This should not assert in debug builds</p> |
30 <span id="fader">Opacity fade on inline</span> | 30 <span id="fader">Opacity fade on inline</span> |
31 | 31 |
32 <div style="-webkit-transform: translateZ(0)"> <!-- throw the page into composit
ing mode --> | 32 <div style="transform: translateZ(0)"> <!-- throw the page into compositing mode
--> |
33 </div> | 33 </div> |
34 | 34 |
35 </body> | 35 </body> |
36 </html> | 36 </html> |
OLD | NEW |