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

Unified Diff: sky/tests/layout/position-absolute-pixels.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/position-absolute-pixels.sky
diff --git a/sky/tests/layout/position-absolute-pixels.sky b/sky/tests/layout/position-absolute-pixels.sky
deleted file mode 100644
index 622c9666a187f506e16dedf69b492f03dcbbbd88..0000000000000000000000000000000000000000
--- a/sky/tests/layout/position-absolute-pixels.sky
+++ /dev/null
@@ -1,62 +0,0 @@
-<import src="../resources/run-after-display.sky" />
-
-<style>
- block, p, flex {
- width: 100px;
- height: 100px;
- margin-bottom: 50px;
- /* Make it a positioning root. */
- transform: translate3d(0, 0, 0);
- }
- block { background: pink; }
- p {
- background: orange;
- }
- flex {
- background: salmon;
- display: flex;
- flex-direction: row;
- }
- spacer {
- height: 30px;
- width: 30px;
- border: 5px solid purple;
- background: papayawhip;
- }
- absolute {
- position: absolute;
- width: 20px;
- height: 20px;
- background: green;
- }
-</style>
-<block>
- <spacer />
- <absolute />
- <spacer />
-</block>
-
-<p>
- <spacer />
- <absolute />
- <spacer />
-</p>
-
-<flex>
- <spacer />
- <absolute />
- <spacer />
-</flex>
-
-<script>
-import "dart:sky";
-import "dart:sky.internals" as internals;
-
-void main() {
- window.addEventListener("load", (_) {
- runAfterDisplay(() {
- internals.notifyTestComplete("");
- });
- });
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698