-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed issue with content in light dom exceptioning (#329)
* fixed issue with content in light dom exceptioning * comments++ to polymer.dom and simpler traversal * deleted commented code
- Loading branch information
Showing
8 changed files
with
94 additions
and
29 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
10 changes: 10 additions & 0 deletions
10
test/fixtures/integration/multiple-replace/projection-element-2.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<dom-module id="projection-element-2"> | ||
<template> | ||
<content></content> | ||
</template> | ||
<script> | ||
Polymer({ | ||
is: 'projection-element-2' | ||
}); | ||
</script> | ||
</dom-module> |
14 changes: 14 additions & 0 deletions
14
test/fixtures/integration/multiple-replace/projection-element.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<link rel="import" href="projection-element-2.html"> | ||
|
||
<dom-module id="projection-element"> | ||
<template> | ||
<projection-element-2 id="customElement"> | ||
<content></content> | ||
</projection-element-2> | ||
</template> | ||
<script> | ||
Polymer({ | ||
is: 'projection-element' | ||
}); | ||
</script> | ||
</dom-module> |
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