[Webkit-unassigned] [Bug 30079] unselectable resources in resource panel

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Oct 6 08:15:11 PDT 2009


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





--- Comment #1 from Patrick Mueller <pmuellr at yahoo.com>  2009-10-06 08:15:11 PDT ---
It's possible to duplicate this behavior with the following HTML

----- snip here -----
testing

<script>

var xhr;

xhr = new XMLHttpRequest();
xhr.open("POST", "http://example.org/abc", false);
xhr.send("123");

xhr = new XMLHttpRequest();
xhr.open("POST", "http://example.org/abc", false);
xhr.send("456");

xhr = new XMLHttpRequest();
xhr.open("POST", "http://example.org/something.else", false);
xhr.send("789");

</script>
----- snip here -----

The results are somewhat intermittent; sometimes you get the can't select
behavior, sometimes you can; usually you can.  If you don't immediately see it,
reload the URL in the browser with WI still up.  In those cases, you will
typically see the "no content" condition of Bug 30080 as well.

Smells like the problem is multiple requests with the same method/url.

-- 
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