Title: [131840] trunk
Revision
131840
Author
[email protected]
Date
2012-10-18 19:19:57 -0700 (Thu, 18 Oct 2012)

Log Message

[V8] fast/dom/gc-9.html fails for document.styleSheets
https://bugs.webkit.org/show_bug.cgi?id=99786

Reviewed by Kentaro Hara.

Source/WebCore:

V8 needs to know about this IDL attribute as well.

* css/StyleSheetList.idl:

LayoutTests:

* platform/chromium/fast/dom/gc-9-expected.txt:
    - Test progression.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (131839 => 131840)


--- trunk/LayoutTests/ChangeLog	2012-10-19 02:14:17 UTC (rev 131839)
+++ trunk/LayoutTests/ChangeLog	2012-10-19 02:19:57 UTC (rev 131840)
@@ -1,5 +1,15 @@
 2012-10-18  Adam Barth  <[email protected]>
 
+        [V8] fast/dom/gc-9.html fails for document.styleSheets
+        https://bugs.webkit.org/show_bug.cgi?id=99786
+
+        Reviewed by Kentaro Hara.
+
+        * platform/chromium/fast/dom/gc-9-expected.txt:
+            - Test progression.
+
+2012-10-18  Adam Barth  <[email protected]>
+
         [V8] fast/dom/gc-9.html fails for document.implementation
         https://bugs.webkit.org/show_bug.cgi?id=99783
 

Modified: trunk/LayoutTests/platform/chromium/fast/dom/gc-9-expected.txt (131839 => 131840)


--- trunk/LayoutTests/platform/chromium/fast/dom/gc-9-expected.txt	2012-10-19 02:14:17 UTC (rev 131839)
+++ trunk/LayoutTests/platform/chromium/fast/dom/gc-9-expected.txt	2012-10-19 02:19:57 UTC (rev 131840)
@@ -68,7 +68,7 @@
 PASS: document.getElementsByTagName('map')[0].areas.myCustomProperty should be 1 and is.
 FAIL: document.body.style.myCustomProperty should be 1 but instead is undefined.
 FAIL: document.body.style.getPropertyCSSValue('color').myCustomProperty should be 1 but instead is undefined.
-FAIL: document.styleSheets.myCustomProperty should be 1 but instead is undefined.
+PASS: document.styleSheets.myCustomProperty should be 1 and is.
 FAIL: document.styleSheets[0].myCustomProperty should be 1 but instead is undefined.
 FAIL: document.styleSheets[0].cssRules.myCustomProperty should be 1 but instead is undefined.
 FAIL: document.styleSheets[0].cssRules[0].myCustomProperty should be 1 but instead is undefined.

Modified: trunk/Source/WebCore/ChangeLog (131839 => 131840)


--- trunk/Source/WebCore/ChangeLog	2012-10-19 02:14:17 UTC (rev 131839)
+++ trunk/Source/WebCore/ChangeLog	2012-10-19 02:19:57 UTC (rev 131840)
@@ -1,5 +1,16 @@
 2012-10-18  Adam Barth  <[email protected]>
 
+        [V8] fast/dom/gc-9.html fails for document.styleSheets
+        https://bugs.webkit.org/show_bug.cgi?id=99786
+
+        Reviewed by Kentaro Hara.
+
+        V8 needs to know about this IDL attribute as well.
+
+        * css/StyleSheetList.idl:
+
+2012-10-18  Adam Barth  <[email protected]>
+
         [V8] fast/dom/gc-9.html fails for document.implementation
         https://bugs.webkit.org/show_bug.cgi?id=99783
 

Modified: trunk/Source/WebCore/css/StyleSheetList.idl (131839 => 131840)


--- trunk/Source/WebCore/css/StyleSheetList.idl	2012-10-19 02:14:17 UTC (rev 131839)
+++ trunk/Source/WebCore/css/StyleSheetList.idl	2012-10-19 02:19:57 UTC (rev 131840)
@@ -20,10 +20,9 @@
 
 // Introduced in DOM Level 2:
 [
-    JSGenerateIsReachable=ImplDocument,
+    GenerateIsReachable=ImplDocument,
     IndexedGetter,
-    NamedGetter,
-    V8DependentLifetime
+    NamedGetter
 ] interface StyleSheetList {
     readonly attribute unsigned long    length;
     StyleSheet         item(in [Optional=DefaultIsUndefined] unsigned long index);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to