Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / custom / lifecycle-created-parser-only.html
blobec4e7029f7c4761851f0e56e5ae26e6c76ed7130
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
5 proto = Object.create(HTMLElement.prototype, { createdCallback: { value: function() { this.innerHTML = "Hello"; } } });
6 document.registerElement("x-foo", { prototype: proto });
7 </script>
8 </head>
9 <body>
10 <x-foo></x-foo>
11 </body>
12 </html>