7d71bc988d
Deletes: pkg/shadow_dom pkg/custom_element (except web_ui stuff) pkg/html_import Adds: pkg/web_components, with README.md and build instructions Changes: pkg/html5lib -- deprecate queryAll/query in favor of *Selector pkg/polymer -- test fixes & a few small changes to work with new polyfills, mostly in build tests/html/custom -- can't load the CE polyfill at runtime, must now be injected statically via an HTML page, similar to the style @blois used for some custom element tests. R=blois@google.com, sigmund@google.com Review URL: https://codereview.chromium.org//158083002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@32533 260f80e4-7a28-3924-810f-c04153c831b5
24 lines
787 B
HTML
24 lines
787 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="dart.unittest" content="full-stack-traces">
|
|
<title> custom_elements_test </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.concat.js"></script>
|
|
<script src="/packages/web_components/dart_support.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1> Running custom_elements_test </h1>
|
|
<script type="text/javascript"
|
|
src="/packages/unittest/test_controller.js"></script>
|
|
<script type="text/javascript" src="/packages/browser/interop.js"></script>
|
|
%TEST_SCRIPTS%
|
|
</body>
|
|
</html>
|