inset-box-shadow-scroll-ref.html (278B)
1 <!DOCTYPE html> 2 <style> 3 #target { 4 width: 220px; 5 height: 120px; 6 overflow: scroll; 7 } 8 #inner { 9 padding: 10px; 10 box-shadow: 10px 10px green inset; 11 height: 120px; 12 } 13 </style> 14 <div id="target"> 15 <div id="inner"> 16 Passes if green inset shadow is visible. 17 </div> 18 </div>