blob: a6085d18207fa635dcc9468bbc2dde4f22c324a0 [file] [log] [blame]
<!doctype html>
<!--
Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
-->
<html>
<head>
<!--polymer-test: this comment is needed for test_suite.dart-->
<title>register test</title>
<script src="/root_dart/tools/testing/dart/test_controller.js"></script>
</head>
<body>
<polymer-element name="x-html">
</polymer-element>
<polymer-element name="x-html-two" extends="x-html">
</polymer-element>
<polymer-element name="x-div" extends="div">
</polymer-element>
<polymer-element name="x-div-two" extends="x-div">
</polymer-element>
<x-html></x-html>
<x-html-two></x-html-two>
<div is='x-div' id='x-div'></div>
<div is='x-div-two' id='x-div-two'></div>
<script type="application/dart" src="register_test.dart"></script>
</body>
</html>