Title: [187549] trunk/LayoutTests
Revision
187549
Author
basile_clem...@apple.com
Date
2015-07-29 10:52:44 -0700 (Wed, 29 Jul 2015)

Log Message

Unreviewed, remove a .orig file.
https://bugs.webkit.org/show_bug.cgi?id=113610

* fast/css-intrinsic-dimensions/height-property-value.html.orig: Removed.

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (187548 => 187549)


--- trunk/LayoutTests/ChangeLog	2015-07-29 17:44:16 UTC (rev 187548)
+++ trunk/LayoutTests/ChangeLog	2015-07-29 17:52:44 UTC (rev 187549)
@@ -1,3 +1,10 @@
+2015-07-29  Basile Clement  <basile_clem...@apple.com>
+
+        Unreviewed, remove a .orig file.
+        https://bugs.webkit.org/show_bug.cgi?id=113610
+
+        * fast/css-intrinsic-dimensions/height-property-value.html.orig: Removed.
+
 2015-07-28  Benjamin Poulain  <bpoul...@apple.com>
 
         Speed up the Stringifier::toJSON() fast case

Deleted: trunk/LayoutTests/fast/css-intrinsic-dimensions/height-property-value.html.orig (187548 => 187549)


--- trunk/LayoutTests/fast/css-intrinsic-dimensions/height-property-value.html.orig	2015-07-29 17:44:16 UTC (rev 187548)
+++ trunk/LayoutTests/fast/css-intrinsic-dimensions/height-property-value.html.orig	2015-07-29 17:52:44 UTC (rev 187549)
@@ -1,37 +0,0 @@
-<!doctype html>
-<!--
-    Tests that the height keywords are not respected by the parser yet.
--->
-<script src=""
-
-<div style="height: -webkit-min-content; min-height: -webkit-min-content; max-height: -webkit-min-content;"></div>
-<div style="height: -webkit-max-content; min-height: -webkit-max-content; max-height: -webkit-max-content;"></div>
-<div style="height: -webkit-fill-available; min-height: -webkit-fill-available; max-height: -webkit-fill-available;"></div>
-<div style="height: -webkit-fit-content; min-height: -webkit-fit-content; max-height: -webkit-fit-content;"></div>
-
-<script>
-    description('Tests that the height keywords are not exposed yet.');
-
-    var divs = document.querySelectorAll('div');
-    for (var i = 0; i < divs.length; ++i) {
-        shouldBeEmptyString('divs[i].style.height');
-        shouldBeEmptyString('divs[i].style.minHeight');
-        shouldBeEmptyString('divs[i].style.maxHeight');
-    }
-
-    var PREFIX = '-webkit-';
-    var KEYWORDS = ['min-content', 'max-content', 'fill-available',  'fit-content'];
-    var div;
-
-    KEYWORDS.forEach(function(keyword) {
-        div = document.createElement('div');
-        div.style.height = PREFIX + keyword;
-        div.style.minHeight = PREFIX + keyword;
-        div.style.maxHeight = PREFIX + keyword;
-        shouldBeEmptyString('div.style.height');
-        shouldBeEmptyString('div.style.minHeight');
-        shouldBeEmptyString('div.style.maxHeight');
-    });
-</script>
-
-<script src=""
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to