1369584-1b.html (358B)
1 <!DOCTYPE html> 2 <style> 3 span { color: green; } 4 #foo span { color: red; } 5 </style> 6 <div id="foo"> 7 <span></span> 8 </div> 9 <div> 10 <!-- Trigger a style sharing cache miss and Bloom filter update, in a way that 11 will add an style sharing cache entry our second span can't match --> 12 <div></div> 13 </div> 14 <div> 15 <span>This should be green</span> 16 </div>