| Index: pkg/web_components/test/interop2_test.html
|
| diff --git a/pkg/web_components/test/interop2_test.html b/pkg/web_components/test/interop2_test.html
|
| deleted file mode 100644
|
| index 3c4f10e8b8790973b62d6fa1b89ff5471da15eb4..0000000000000000000000000000000000000000
|
| --- a/pkg/web_components/test/interop2_test.html
|
| +++ /dev/null
|
| @@ -1,59 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| - <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
| - <meta name="dart.unittest" content="full-stack-traces">
|
| - <title> interop_test.html </title>
|
| - <style>
|
| - .unittest-table { font-family:monospace; border:1px; }
|
| - .unittest-pass { background: #6b3;}
|
| - .unittest-fail { background: #d55;}
|
| - .unittest-error { background: #a11;}
|
| - </style>
|
| - <script src="/packages/web_components/platform.js"></script>
|
| - <script src="/packages/web_components/dart_support.js"></script>
|
| -</head>
|
| -<body>
|
| - <h1> Running interop_test </h1>
|
| - <script>
|
| - var counter = 0;
|
| - var A = function() {};
|
| - A.prototype = Object.create(HTMLElement.prototype);
|
| - A.prototype.inc = function() { this.x = counter++; };
|
| - A.prototype.createdCallback = function() { this.inc(); };
|
| -
|
| - var B = function() {};
|
| - B.prototype = Object.create(HTMLDivElement.prototype);
|
| - B.prototype.createdCallback = function() { this.x = counter++; };
|
| - B.extends = 'div';
|
| -
|
| - document.registerElement('x-a', A);
|
| - document.registerElement('x-b', B);
|
| -
|
| - function registerC() {
|
| - var proto = Object.create(HTMLElement.prototype, {
|
| - inc: { value: function() { this.x = counter++; } },
|
| - createdCallback: {
|
| - value: function() { this.inc(); },
|
| - configurable: true},
|
| - });
|
| - document.registerElement('x-c', {prototype: proto});
|
| - }
|
| - function addA() {
|
| - document.body.appendChild(document.createElement('x-a'));
|
| - }
|
| - function addB() {
|
| - document.body.appendChild(document.createElement('div', 'x-b'));
|
| - }
|
| - function addC() {
|
| - document.body.appendChild(document.createElement('x-c'));
|
| - }
|
| - </script>
|
| - <x-a id="i1"></x-a>
|
| - <div is="x-b" id="i2"></div>
|
| - <x-c id="i3"></x-b>
|
| - <script type="text/javascript"
|
| - src="/root_dart/tools/testing/dart/test_controller.js"></script>
|
| - %TEST_SCRIPTS%
|
| -</body>
|
| -</html>
|
|
|