Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 6702be8

Browse files
committed
fix(tests): disable shadowDom in examples until chromedriver support is available
1 parent ccede3b commit 6702be8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

example/web/animation/repeat_demo.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ part of animation;
22

33
@Component(
44
selector: 'repeat-demo',
5-
useShadowDom: true,
5+
useShadowDom: false,
66
template: '''
77
<div class="repeat-demo">
88
<button ng-click="ctrl.addItem()">Add Thing</button>

example/web/animation/visibility_demo.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ part of animation;
1616
</div>
1717
</div>
1818
''',
19-
publishAs: 'ctrl')
19+
publishAs: 'ctrl',
20+
useShadowDom: false)
2021
class VisibilityDemo {
2122
bool visible = false;
2223
}

0 commit comments

Comments
 (0)