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

Side by Side Diff: LayoutTests/fast/events/touch/script-tests/tap-highlight-color.js

Issue 14020004: Remove the remains of unused guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years, 7 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 var div = document.createElement("div"); 1 var div = document.createElement("div");
2 div.id = "touchtarget"; 2 div.id = "touchtarget";
3 div.style.width = "100px"; 3 div.style.width = "100px";
4 div.style.height = "100px"; 4 div.style.height = "100px";
5 div.style.color = "blue"; 5 div.style.color = "blue";
6 div.innerText = "Touch Me!"; 6 div.innerText = "Touch Me!";
7 div.style.webkitTapHighlightColor = "rgba(11, 22, 33, 0)"; 7 div.style.webkitTapHighlightColor = "rgba(11, 22, 33, 0)";
8 8
9 function onTouchStart() 9 function onTouchStart()
10 { 10 {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 } 42 }
43 43
44 if (window.testRunner) 44 if (window.testRunner)
45 testRunner.waitUntilDone(); 45 testRunner.waitUntilDone();
46 46
47 if (window.eventSender && eventSender.clearTouchPoints) { 47 if (window.eventSender && eventSender.clearTouchPoints) {
48 description("Check tap highlight color in touch event"); 48 description("Check tap highlight color in touch event");
49 49
50 touchTargets(); 50 touchTargets();
51 } else { 51 } else {
52 debug("This test requires DumpRenderTree && WebKit built with ENABLE(TOUCH_E VENT).") 52 debug("This test requires DumpRenderTree.")
53 } 53 }
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/event-creation-expected.txt ('k') | LayoutTests/fast/events/touch/tap-highlight-color.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698