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

Unified Diff: third_party/WebKit/LayoutTests/fast/images/embed-does-not-propagate-dimensions-to-object-ancestor.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month 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/images/embed-does-not-propagate-dimensions-to-object-ancestor.html
diff --git a/third_party/WebKit/LayoutTests/fast/images/embed-does-not-propagate-dimensions-to-object-ancestor.html b/third_party/WebKit/LayoutTests/fast/images/embed-does-not-propagate-dimensions-to-object-ancestor.html
deleted file mode 100644
index ed30f634ea57a48824da80a28707152982098f2f..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/images/embed-does-not-propagate-dimensions-to-object-ancestor.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<html>
-<head>
- <!-- https://bugs.webkit.org/show_bug.cgi?id=17688 - ensure the <embed> element does not propagate its height and width to an object ancestor node -->
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- function measure() {
- if ((document.getElementById("first").offsetWidth == document.getElementById("second").offsetWidth)
- && (document.getElementById("first").offsetHeight == document.getElementById("second").offsetHeight)
- && document.getElementById("third").height == 100
- && document.getElementById("third").width == 100)
- document.getElementById("console").innerHTML = "SUCCESS";
- testRunner.notifyDone();
- }
-
- function test(){
- window.setTimeout(measure(),0);
- }
- </script>
-</head>
-<body onload="test();">
- <object id="first" data="resources/mu.png" style="height: 100px; width:100px;"><embed height="300" width="300"></object>
- <br>
- <object id="second" data="resources/mu.png" style="" width="100" height="100"><embed height="300" width="300" type="application/x-shockwave-flash" src="../../plugins/resources/simple_blank.swf"></object>
- <br>
- <object id="third" style="" width="100" height="100"><embed height="300" width="300" type="application/x-shockwave-flash" src="../../plugins/resources/simple_blank.swf"></object>
- <div id="console">FAILURE</div>
-</body></html>
-

Powered by Google App Engine
This is Rietveld 408576698