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

Unified Diff: third_party/WebKit/LayoutTests/fast/transforms/transform-hit-test-flipped.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/transform-hit-test-flipped.html
diff --git a/third_party/WebKit/LayoutTests/fast/transforms/transform-hit-test-flipped.html b/third_party/WebKit/LayoutTests/fast/transforms/transform-hit-test-flipped.html
deleted file mode 100644
index 660b7fd1a29b3983e7b4615ada3704228d7c5b6a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/transforms/transform-hit-test-flipped.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
-<head>
-<style>
- #rotated {
- width: 100px;
- height: 100px;
- background: red;
- margin: 10px;
- padding: 10px;
- transform: rotate(180deg);
- }
-</style>
-<script>
-if (window.testRunner)
- window.testRunner.dumpAsText()
-
-function runTest()
-{
- document.body.offsetWidth;
- var elt = document.elementFromPoint(50, 50);
- if (elt == document.getElementById('rotated'))
- document.getElementById('console').innerHTML = 'PASS';
- else
- document.getElementById('console').innerHTML = 'FAIL';
- elt.style.display = 'none';
-}
-</script>
-</head>
-<body onload="runTest()">
-<div id="rotated">180 degree rotation</div>
-<div id="console"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698