mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
12 lines
323 B
HTML
12 lines
323 B
HTML
<html>
|
|
<link rel="import" href="../resources/dump-as-text.html" />
|
|
<body>
|
|
<section id="a" is="x-a"></section>
|
|
Tests that type extension of a element whose DOM interface is HTMLElement does not assert
|
|
<script>
|
|
var u = document.querySelector('#a');
|
|
var v = document.createElement('section', 'x-a');
|
|
</script>
|
|
</body>
|
|
</html>
|