Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Unified Diff: third_party/WebKit/Source/web/tests/data/touch-action-tests.js

Issue 2843363002: Fix TouchActionTest so that it doesn't use /deep/ (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/tests/data/touch-action-tests.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/tests/data/touch-action-tests.js
diff --git a/third_party/WebKit/Source/web/tests/data/touch-action-tests.js b/third_party/WebKit/Source/web/tests/data/touch-action-tests.js
index 82265d5b91de17671d5a0ad981e6d5da234fe131..c4a5f08c7f4ef0f016c5f9faa449a7ac3d12c5a5 100644
--- a/third_party/WebKit/Source/web/tests/data/touch-action-tests.js
+++ b/third_party/WebKit/Source/web/tests/data/touch-action-tests.js
@@ -17,6 +17,9 @@ window.addEventListener('load', function() {
}
tree.parentElement.removeChild(tree);
var shadowRoot = host.createShadowRoot();
+ var style = document.createElement('style');
+ style.innerText = ' .ta-none { -ms-touch-action: none; touch-action: none; }';
+ shadowRoot.appendChild(style);
shadowRoot.appendChild(tree);
}
});
« no previous file with comments | « third_party/WebKit/Source/web/tests/data/touch-action-tests.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698