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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-mouse-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/touch/gesture/gesture-tap-mouse-events.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-mouse-events.html b/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-mouse-events.html
index 0385f3a89f66d6fd62ff9ab7904e9bccc21fdf59..5cd7e1827702a5bd7e2130f49660c54c263e567a 100644
--- a/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-mouse-events.html
+++ b/third_party/WebKit/LayoutTests/fast/events/touch/gesture/gesture-tap-mouse-events.html
@@ -1,24 +1,20 @@
<!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 id="lightblue" style="background-color:lightblue">
- <div id="blue" style="background-color:blue;">
+ <div id="lightblue" class="box" style="background-color:lightblue">
+ <div id="blue" class="box" style="background-color:blue;">
</div>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698