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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/pointerevents/pointerevent_touch-action-illegal.html

Issue 2018873002: Fix testharness paths in imported/wpt/* except dom and html. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>touch-action: illegal</title> 4 <title>touch-action: illegal</title>
5 <meta name="viewport" content="width=device-width"> 5 <meta name="viewport" content="width=device-width">
6 <link rel="stylesheet" type="text/css" href="pointerevent_styles.css"> 6 <link rel="stylesheet" type="text/css" href="pointerevent_styles.css">
7 <script src="../../../resources/testharness.js"></script> 7 <script src="/resources/testharness.js"></script>
8 <script src="../../../resources/testharnessreport.js"></script> 8 <script src="/resources/testharnessreport.js"></script>
9 <script src="pointerevent_support.js"></script> 9 <script src="pointerevent_support.js"></script>
10 <style> 10 <style>
11 #target0 { 11 #target0 {
12 width: 700px; 12 width: 700px;
13 height: 50px; 13 height: 50px;
14 touch-action: pan-x none; 14 touch-action: pan-x none;
15 } 15 }
16 #target1 { 16 #target1 {
17 width: 700px; 17 width: 700px;
18 height: 50px; 18 height: 50px;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 done(); 58 done();
59 } 59 }
60 </script> 60 </script>
61 <h1>touch-action: none</h1> 61 <h1>touch-action: none</h1>
62 <div id="complete-notice"> 62 <div id="complete-notice">
63 <p>The following pointer types were detected: <span id="pointertype- log"></span>.</p> 63 <p>The following pointer types were detected: <span id="pointertype- log"></span>.</p>
64 </div> 64 </div>
65 <div id="log"></div> 65 <div id="log"></div>
66 </body> 66 </body>
67 </html> 67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698