Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/scripting-1/the-template-element/template-table-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:masonf@chromium.org">
<meta name="assert" content="The renderer should not crash.">
<template id=tmpl></template>
<table id=tbl>
<script>
tmpl.appendChild(tbl);
</script>
Crash
</table>