| Index: third_party/polymer/v1_0/components-chromium/iron-test-helpers/mock-interactions.js
|
| diff --git a/third_party/polymer/v1_0/components-chromium/iron-test-helpers/mock-interactions.js b/third_party/polymer/v1_0/components-chromium/iron-test-helpers/mock-interactions.js
|
| index 323b24053b64a831e368d119af04ce9dee609476..324390e858b3c3e718872dc200f69a63cd9a09c8 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/iron-test-helpers/mock-interactions.js
|
| +++ b/third_party/polymer/v1_0/components-chromium/iron-test-helpers/mock-interactions.js
|
| @@ -84,6 +84,9 @@
|
| }
|
|
|
| function tap(node) {
|
| + // Respect nodes that are disabled in the UI.
|
| + if (window.getComputedStyle(node)['pointer-events'] === 'none')
|
| + return;
|
| var xy = middleOfNode(node);
|
| down(node, xy);
|
| up(node, xy);
|
|
|