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

Unified Diff: sky/tests/layout/clipping-elementFromPoint.sky

Issue 1215063003: Remove Sky tests that we don't intend to port to the new world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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: sky/tests/layout/clipping-elementFromPoint.sky
diff --git a/sky/tests/layout/clipping-elementFromPoint.sky b/sky/tests/layout/clipping-elementFromPoint.sky
deleted file mode 100644
index f2bed0b599f97c3e3a0b46ea42e9be3f59f99e42..0000000000000000000000000000000000000000
--- a/sky/tests/layout/clipping-elementFromPoint.sky
+++ /dev/null
@@ -1,39 +0,0 @@
-<style>
-toolbar {
- background: yellow;
- width: 50px;
- height: 50px;
-}
-scrollable {
- overflow: hidden;
- height: 400px;
- background: red;
-}
-content {
- height: 400px;
- background-color: pink;
- transform: translateY(-100px);
-}
-</style>
-<toolbar>toolbar</toolbar>
-<scrollable><content>content</content></scrollable>
-<script>
-import "../resources/third_party/unittest/unittest.dart";
-import "../resources/unit.dart";
-
-import "dart:async";
-import "dart:sky";
-
-void main() {
- initUnit();
-
- test("should hit test toolbar", () {
- expect(document.elementFromPoint(10, 10).textContent, equals("toolbar"));
- });
-
- test("should hit test toolbar when transformed, but clipped element overlaps", () {
- document.querySelector("scrollable").style["transform"] = "translate(0, 0)";
- expect(document.elementFromPoint(10, 10).textContent, equals("toolbar"));
- });
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698