mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL is just a search-and-replace. R=esprehn@chromium.org Review URL: https://codereview.chromium.org/694423002
11 lines
341 B
Plaintext
11 lines
341 B
Plaintext
<html>
|
|
<import src="../resources/dump-as-text.sky" />
|
|
<body>
|
|
<script>
|
|
document.registerElement("x-foo", { prototype: Object.create(HTMLElement.prototype, { createdCallback: { value: function () { this.innerHTML = "<x-foo>Hello</x-foo>"; } } }) });
|
|
document.createElement("x-foo");
|
|
console.log("PASS unless crash");
|
|
</script>
|
|
</body>
|
|
</html>
|