Chromium Code Reviews| Index: LayoutTests/fast/dom/custom/resources/empty-custom-body.html |
| diff --git a/LayoutTests/fast/dom/custom/resources/empty-custom-body.html b/LayoutTests/fast/dom/custom/resources/empty-custom-body.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6dc790f9d830685ca3e1267ca6dac567c0aa8f77 |
| --- /dev/null |
| +++ b/LayoutTests/fast/dom/custom/resources/empty-custom-body.html |
| @@ -0,0 +1,8 @@ |
| +<!DOCTYPE html> |
| +<script> |
| +var proto = Object.create(HTMLBodyElement.prototype); |
| +document.registerElement('x-body', {prototype: proto, extends: 'body'}); |
| +</script> |
| + |
| +<body id="thebody" is="x-body"> |
| +</body> |