This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from Polymer/master
6/17 master -> stable
- Loading branch information
Showing
34 changed files
with
594 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,3 @@ | ||
[submodule "ShadowDOM"] | ||
path = ShadowDOM | ||
url = https://github.com/Polymer/ShadowDOM.git | ||
[submodule "CustomElements"] | ||
path = CustomElements | ||
url = https://github.com/Polymer/CustomElements.git | ||
[submodule "PointerGestures"] | ||
path = PointerGestures | ||
url = https://github.com/Polymer/PointerGestures.git | ||
[submodule "MDV"] | ||
path = MDV | ||
url = https://github.com/Polymer/mdv.git | ||
[submodule "WebAnimations"] | ||
path = WebAnimations | ||
url = https://github.com/web-animations/web-animations-js.git | ||
[submodule "HTMLImports"] | ||
path = HTMLImports | ||
url = https://github.com/Polymer/HTMLImports.git | ||
[submodule "buildbot"] | ||
path = buildbot | ||
url = https://github.com/Polymer/buildbot.git | ||
[submodule "tools"] | ||
path = tools | ||
url = https://github.com/Polymer/tools.git |
Submodule CustomElements
deleted from
ab46c7
Submodule HTMLImports
deleted from
753e58
Submodule MDV
deleted from
2767ae
Submodule PointerGestures
deleted from
09ba72
Submodule ShadowDOM
deleted from
7e318b
Submodule WebAnimations
deleted from
f81689
Submodule buildbot
deleted from
3a4761
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<!-- | ||
Copyright 2013 The Polymer Authors. All rights reserved. | ||
Use of this source code is governed by a BSD-style | ||
license that can be found in the LICENSE file. | ||
--> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>MDV + ShadowDOM Polyfill Integration Tests</title> | ||
<link rel="stylesheet" href="../../node_modules/mocha/mocha.css"> | ||
<script src="../../../ShadowDOM/shadowdom.js"></script> | ||
<script src="../../node_modules/mocha/mocha.js"></script> | ||
<script src="../../node_modules/chai/chai.js"></script> | ||
<script src="../../tools/test/htmltest.js"></script> | ||
<script src="../../../mdv/tests/setup.js"></script> | ||
<script src="../../../mdv/mdv.js"></script> | ||
</head> | ||
<body> | ||
<script> | ||
|
||
mocha.setup({ | ||
ignoreLeaks: true, | ||
ui: 'tdd' | ||
}); | ||
|
||
var assert = chai.assert; | ||
|
||
</script> | ||
<!-- <script src="../../../mdv/tests/node_bindings.js"></script> --> | ||
<script src="../../../mdv/tests/template_element.js"></script> | ||
<script src="../../../mdv/tests/expression_syntax.js"></script> | ||
<div id="mocha"></div> | ||
<script> | ||
var unwrap = ShadowDOMPolyfill.unwrap; | ||
// mocha stomps window.onerror, save for failure case | ||
var htmlsuite_fail = window.onerror; | ||
var runner = mocha.run(); | ||
runner.on('fail', function(test, err) { | ||
htmlsuite_fail(err.toString()); | ||
}); | ||
runner.on('end', function() { | ||
runner.failures || done(); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.