Title: [111954] releases/WebKitGTK/webkit-1.8

Diff

Modified: releases/WebKitGTK/webkit-1.8/LayoutTests/ChangeLog (111953 => 111954)


--- releases/WebKitGTK/webkit-1.8/LayoutTests/ChangeLog	2012-03-24 01:04:50 UTC (rev 111953)
+++ releases/WebKitGTK/webkit-1.8/LayoutTests/ChangeLog	2012-03-24 01:06:19 UTC (rev 111954)
@@ -1,3 +1,13 @@
+2012-03-23  Dan Bernstein  <[email protected]>
+
+        <rdar://problem/10923294> REGRESSION (r100847): Entries are clipped out in Day One
+        https://bugs.webkit.org/show_bug.cgi?id=80494
+
+        Reviewed by Sam Weinig.
+
+        * fast/dom/HTMLDocument/width-and-height-expected.txt: Added.
+        * fast/dom/HTMLDocument/width-and-height.html: Added.
+
 2012-03-23  Maciej Stachowiak  <[email protected]>
 
         REGRESSION(r97353): Crash when accessing location or history properties inside a navigated window

Added: releases/WebKitGTK/webkit-1.8/LayoutTests/fast/dom/HTMLDocument/width-and-height-expected.txt (0 => 111954)


--- releases/WebKitGTK/webkit-1.8/LayoutTests/fast/dom/HTMLDocument/width-and-height-expected.txt	                        (rev 0)
+++ releases/WebKitGTK/webkit-1.8/LayoutTests/fast/dom/HTMLDocument/width-and-height-expected.txt	2012-03-24 01:06:19 UTC (rev 111954)
@@ -0,0 +1 @@
+PASS. The document.width and document.height properties are accessible from _javascript_.
Property changes on: releases/WebKitGTK/webkit-1.8/LayoutTests/fast/dom/HTMLDocument/width-and-height-expected.txt
___________________________________________________________________

Added: svn:eol-style

Added: releases/WebKitGTK/webkit-1.8/LayoutTests/fast/dom/HTMLDocument/width-and-height.html (0 => 111954)


--- releases/WebKitGTK/webkit-1.8/LayoutTests/fast/dom/HTMLDocument/width-and-height.html	                        (rev 0)
+++ releases/WebKitGTK/webkit-1.8/LayoutTests/fast/dom/HTMLDocument/width-and-height.html	2012-03-24 01:06:19 UTC (rev 111954)
@@ -0,0 +1,9 @@
+<script>
+    if (window.layoutTestController)
+        layoutTestController.dumpAsText();
+
+    if ('width' in document && 'height' in document)
+        document.write("PASS. The document.width and document.height properties are accessible from _javascript_.");
+    else
+        document.write("FAIL. document.width or document.height are not accessible from _javascript_.");
+</script>
Property changes on: releases/WebKitGTK/webkit-1.8/LayoutTests/fast/dom/HTMLDocument/width-and-height.html
___________________________________________________________________

Added: svn:eol-style

Modified: releases/WebKitGTK/webkit-1.8/Source/WebCore/ChangeLog (111953 => 111954)


--- releases/WebKitGTK/webkit-1.8/Source/WebCore/ChangeLog	2012-03-24 01:04:50 UTC (rev 111953)
+++ releases/WebKitGTK/webkit-1.8/Source/WebCore/ChangeLog	2012-03-24 01:06:19 UTC (rev 111954)
@@ -1,3 +1,15 @@
+2012-03-23  Dan Bernstein  <[email protected]>
+
+        <rdar://problem/10923294> REGRESSION (r100847): Entries are clipped out in Day One
+        https://bugs.webkit.org/show_bug.cgi?id=80494
+
+        Reviewed by Sam Weinig.
+
+        Test: fast/dom/HTMLDocument/width-and-height.html
+
+        * html/HTMLDocument.idl: Reverted r100847 by re-enabling the width and height properties
+        in the _javascript_ bindings.
+
 2012-03-23  Adele Peterson  <[email protected]>
 
         REGRESSION(r96566): Cursor is I-beam upon dragging an attachment in mail

Modified: releases/WebKitGTK/webkit-1.8/Source/WebCore/html/HTMLDocument.idl (111953 => 111954)


--- releases/WebKitGTK/webkit-1.8/Source/WebCore/html/HTMLDocument.idl	2012-03-24 01:04:50 UTC (rev 111953)
+++ releases/WebKitGTK/webkit-1.8/Source/WebCore/html/HTMLDocument.idl	2012-03-24 01:06:19 UTC (rev 111954)
@@ -45,10 +45,8 @@
         void captureEvents();
         void releaseEvents();
 
-#if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
         readonly attribute long width;
         readonly attribute long height;
-#endif
                  attribute [TreatNullAs=NullString] DOMString dir;
                  attribute [TreatNullAs=NullString] DOMString designMode;
         readonly attribute DOMString compatMode;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to