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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-events.html

Issue 1391393002: Fire pointerup/down events for corresponding mouse events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Skipped the failing test. Created 5 years, 2 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
Index: third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-events.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-events.html b/third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-events.html
index 73445ab71d04776d5217754b6079ffdfc4f1da43..0f7ec733371e527ef204f421a2abb113df907556 100644
--- a/third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-events.html
+++ b/third_party/WebKit/LayoutTests/fast/events/pointerevents/touch-pointer-events.html
@@ -1,20 +1,16 @@
<!DOCTYPE HTML>
<script src="../../../resources/js-test.js"></script>
<style>
-div {
+div.box {
margin: 10px;
padding: 50px;
float: left;
}
-#console {
- padding: 0px;
- float: none;
-}
</style>
-<div id="grey" style="background-color:grey">
- <div id="lightgreen" style="background-color:lightgreen">
- <div id="green" style="background-color:green;">
+<div id="grey" class="box" style="background-color:grey">
+ <div id="lightgreen" class="box" style="background-color:lightgreen">
+ <div id="green" class="box" style="background-color:green;">
</div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698