mirror of
https://github.com/servo/servo.git
synced 2025-10-09 13:09:25 +01:00
17 lines
315 B
HTML
17 lines
315 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://drafts.csswg.org/mediaqueries/#scripting">
|
|
<link rel="match" href="scripting-print-script-ref.html">
|
|
<style>
|
|
#script {
|
|
display: none;
|
|
}
|
|
|
|
@media (scripting) {
|
|
#script {
|
|
display: block;
|
|
}
|
|
}
|
|
</style>
|
|
<div id="script">
|
|
Script is enabled
|
|
</div>
|