blob: da816354e66ecea0e15557789a5c89188bf9e589 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<style>
:root {
color: green;
}
@media (scripting: initial-only) {
:root {
color: red;
}
}
</style>
<p>This text should be green when printing.</p>
<script>
if (window.internals)
internals.settings.setMediaTypeOverride("print");
</script>
</html>