| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 ::-webkit-scrollbar { | 4 ::-webkit-scrollbar { |
| 5 width: 12px; | 5 width: 12px; |
| 6 height: 12px; | 6 height: 12px; |
| 7 } | 7 } |
| 8 ::-webkit-scrollbar-track { | 8 ::-webkit-scrollbar-track { |
| 9 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); | 9 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); |
| 10 -webkit-border-radius: 10px; | 10 -webkit-border-radius: 10px; |
| 11 border-radius: 10px; | 11 border-radius: 10px; |
| 12 } | 12 } |
| 13 ::-webkit-scrollbar-thumb { | 13 ::-webkit-scrollbar-thumb { |
| 14 -webkit-border-radius: 10px; | 14 -webkit-border-radius: 10px; |
| 15 border-radius: 10px; | 15 border-radius: 10px; |
| 16 background: rgba(255,150,250,0.8); | 16 background: rgba(255,150,250,0.8); |
| 17 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); | 17 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); |
| 18 } | 18 } |
| 19 iframe { | 19 iframe { |
| 20 width: 100px; | 20 width: 100px; |
| 21 height: 100px; | 21 height: 100px; |
| 22 } | 22 } |
| 23 </style> | 23 </style> |
| 24 </head> | 24 </head> |
| 25 <body> | 25 <body> |
| 26 <iframe src="scrollable-subiframe-inactive-expected.html"></iframe> | 26 <iframe src="scrollable-subiframe-nowindowinactive-expected.html"></ifra
me> |
| 27 <div id="fillDIV" style="background-color:lightblue;width:400px;height:4
00px;overflow:hidden;"> </div> | 27 <div id="fillDIV" style="background-color:lightblue;width:400px;height:4
00px;overflow:hidden;"> </div> |
| 28 </body> | 28 </body> |
| 29 </html> | 29 </html> |
| OLD | NEW |