631352-1.html (245B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 div:not(:lang(foo)) { display: none; } 6 </style> 7 </head> 8 <body onload="document.body.offsetWidth; document.body.lang = 'foo'"> 9 <div>This text should be visible</div> 10 </body> 11 </html>