Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /touch-events/touch-action-document-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html style="touch-action: pan-down">
<video></video>
<script>
// This test passes if it does not crash.
window.onload = () => {
document.open();
document.write('Done');
document.close();
}
</script>