scripting-print-script.html (315B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/mediaqueries/#scripting"> 3 <link rel="match" href="scripting-print-script-ref.html"> 4 <style> 5 #script { 6 display: none; 7 } 8 9 @media (scripting) { 10 #script { 11 display: block; 12 } 13 } 14 </style> 15 <div id="script"> 16 Script is enabled 17 </div>