[Webkit-unassigned] [Bug 18951] New: all DOM operations stop working when location.hash set to '#'

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu May 8 14:04:40 PDT 2008


http://bugs.webkit.org/show_bug.cgi?id=18951

           Summary: all DOM operations stop working when location.hash set
                    to '#'
           Product: WebKit
           Version: 525.x (Safari 3.1)
          Platform: PC
               URL: http://www.nick-santos.com/tests/safari_hash_test.html
        OS/Version: Mac OS X 10.5
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: nicksantos at google.com


The following javascript code:

     window.location.hash = '#b=BBB';

     var node = document.createElement('span');
     node.innerHTML = 'Safari ';
     document.body.appendChild(node);

     window.location.hash = '#';

     var node2 = document.createElement('span');
     node2.innerHTML = 'can\'t take the heat!';
     document.body.appendChild(node2);

makes all subsequent DOM operations fail. Weird.


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



More information about the webkit-unassigned mailing list