Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            - /css/cssom/media-print-change-print.html - WPT Dashboard Interop Dashboard
 
<!doctype html>
<link rel=match href="media-print-change-print-ref.html">
<div id="target">FAIL</div>
<script>
  matchMedia("print").addEventListener("change", function() {
    document.getElementById("target").innerHTML = "PASS";
  });
</script>