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

Unified Diff: LayoutTests/fast/frames/seamless/seamless-min-max.html

Issue 138443013: Remove iframe@seamless (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Include remove tests Created 6 years, 11 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: LayoutTests/fast/frames/seamless/seamless-min-max.html
diff --git a/LayoutTests/fast/frames/seamless/seamless-min-max.html b/LayoutTests/fast/frames/seamless/seamless-min-max.html
deleted file mode 100644
index d806160b5680e79d986312977eb343f060d721b3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/frames/seamless/seamless-min-max.html
+++ /dev/null
@@ -1,20 +0,0 @@
-<!DOCTYPE html>
-<script src="../../../resources/js-test.js"></script>
-<div id="parent" style="width: 200px; height: 200px;">
-<iframe id="iframe1" seamless style="min-width: 300px; min-height: 300px " src="resources/square.html"></iframe>
-<iframe id="iframe2" seamless style="max-width: 50px; max-height: 50px" src="resources/square.html"></iframe>
-</div>
-<script>
-debug("Test that seamless iframes respect min/max height/width CSS styles.")
-window.onload = function () {
- window.iframe1 = document.getElementById("iframe1");
- window.iframe2 = document.getElementById("iframe2");
-
- // Seamless should respect min/max CSS values like any other element.
- shouldBeEqualToString("window.getComputedStyle(iframe1).width", "300px");
- shouldBeEqualToString("window.getComputedStyle(iframe1).height", "300px");
-
- shouldBeEqualToString("window.getComputedStyle(iframe2).width", "50px");
- shouldBeEqualToString("window.getComputedStyle(iframe2).height", "50px");
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698