[Webkit-unassigned] [Bug 76107] New: WebKit fails IETC Override_Property_Setter_High (both JSC and V8)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jan 11 14:55:10 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=76107

           Summary: WebKit fails IETC Override_Property_Setter_High (both
                    JSC and V8)
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: eric at webkit.org
                CC: ggaren at apple.com, oliver at apple.com, abarth at webkit.org,
                    barraclough at apple.com, antonm at chromium.org


WebKit fails IETC Override_Property_Setter_High (both JSC and V8)

http://samples.msdn.microsoft.com/ietestcenter/dominheritance/showdominheritancetest.htm?Override_Property_Setter_High

Passes in FF.  There seem to be a number of Object.defineProperty bugs on file, maybe this is just a dupe of one of them.

The test is doing the following:

        var setValue = false;
        if (Object.defineProperty) {
            Object.defineProperty(Node.prototype, "nodeName", {
                set: function () {
                    setValue = true;
                }
            });
        }
        var div = document.createElement("div");
        div.nodeName = "foo";
        if (setValue) {
            document.getElementById("testresult").innerHTML = "Pass";
        }

CCing the JavaScript ninjas.

See also bug 76106 which is about the "getter" variant of this test.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list