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

Unified Diff: third_party/WebKit/LayoutTests/fast/transforms/hit-test-large-scale.html

Issue 2547723002: Merge LayoutTests fast/transforms in transforms (Closed)
Patch Set: Fix a bad path reference. Created 4 years 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/transforms/hit-test-large-scale.html
diff --git a/third_party/WebKit/LayoutTests/fast/transforms/hit-test-large-scale.html b/third_party/WebKit/LayoutTests/fast/transforms/hit-test-large-scale.html
deleted file mode 100644
index d7d2bd98dbdd42af080a6f146b1fc66b184a075b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/transforms/hit-test-large-scale.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
- if (window.testRunner)
- window.testRunner.dumpAsText()
-
- function runTest()
- {
- document.body.offsetWidth;
- var elt = document.elementFromPoint(130, 130);
- if (elt == document.getElementById('progress'))
- document.getElementById('console').innerHTML = 'PASS';
- else
- document.getElementById('console').innerHTML = 'FAIL';
- }
-</script>
-<style type="text/css">
- #progress {
- width: 2px;
- height: 2px;
- margin: 10px;
- transform: scale(60);
- -webkit-transform-origin: 0 0;
- background-color: blue;
- }
-
- #progress:hover {
- background-color: red;
- }
-</style>
-</head>
-<body onload="runTest()">
- <p>The blue box only responds to hover over some of its area. It has a scale() transform</p>
- <div id="progress"></div>
-
- <div id="console"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698