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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-transition-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/mouse-pointer-transition-events.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-transition-events.html b/third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-transition-events.html
index aad81af751e4c07a795be63ae687f74f8aedcfa9..63205282751ff82b3b49bc6f91fbe9fff605f975 100644
--- a/third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-transition-events.html
+++ b/third_party/WebKit/LayoutTests/fast/events/pointerevents/mouse-pointer-transition-events.html
@@ -1,19 +1,15 @@
<!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="green" style="background-color:green;">
+<div id="grey" class="box" style="background-color:grey">
+ <div id="green" class="box" style="background-color:green;">
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698