summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-template-element/template-table-crash.html
blob: 0f6a49874d2da96f612d2770031ab0ce883f88c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:masonf@chromium.org">
<link rel="help" href="https://crbug.com/1212619">
<meta name="assert" content="The renderer should not crash.">

<template id=tmpl></template>
<table id=tbl>
  <script>
    tmpl.appendChild(tbl);
  </script>
  Crash
</table>