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

Unified Diff: third_party/WebKit/LayoutTests/fast/transforms/transform-inside-overflow-scroll.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-inside-overflow-scroll.html
diff --git a/third_party/WebKit/LayoutTests/fast/transforms/transform-inside-overflow-scroll.html b/third_party/WebKit/LayoutTests/fast/transforms/transform-inside-overflow-scroll.html
deleted file mode 100644
index 6c47644ff044127aaf9b407d954771a5d7406677..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/transforms/transform-inside-overflow-scroll.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<html>
-<head>
- <style>
- #scroll {
- width: 200px;
- height: 200px;
- overflow: scroll;
- border: 1px solid black;
- }
-
- #transform {
- width: 100px;
- height: 100px;
- background-color: green;
- transform: translateY(150px);
- }
- </style>
-</head>
-
-<body>
-
- <p id="result">
- FAIL. The transform has not been applied to the scrollHeight.
- </p>
-
- <div id="scroll">
- <div id="transform"></div>
- </div>
-
- <script>
- if (window.testRunner)
- testRunner.dumpAsText();
- var scroll = document.getElementById("scroll");
- var scrollHeight = scroll.scrollHeight;
- if (scrollHeight > 200) {
- var result = document.getElementById("result");
- result.innerHTML = "SUCCESS! The transform was applied to the scrollHeight!";
- }
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698