mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
A lot of these are ref-tests, so I'm skipping the failing ones for now, and will make as many pass as possible in subsequent commits.
18 lines
364 B
HTML
18 lines
364 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://drafts.csswg.org/mediaqueries/#scripting">
|
|
<link rel="match" href="../../../../expected/wpt-import/css/mediaqueries/scripting-print-script-ref.html">
|
|
<style>
|
|
#script {
|
|
display: none;
|
|
}
|
|
|
|
@media (scripting) {
|
|
#script {
|
|
display: block;
|
|
}
|
|
}
|
|
</style>
|
|
<div id="script">
|
|
Script is enabled
|
|
</div>
|