[Webkit-unassigned] [Bug 20154] nested framesets do not appear to be loading javascript libraries (oracle)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Aug 12 08:00:57 PDT 2008


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





------- Comment #6 from salex at mac.com  2008-08-12 08:00 PDT -------
(In reply to comment #5)
> (In reply to comment #4)
> > I anyone would like to help me with an answer to this incorrect statement:
> 
> I'm confused - is this still related to the original issue? I don't see the
> relationship.

Sorry, it is not related - just my frustration with Oracle Service Request/bug
reporting. I can't seem to get anything out of them except more requests for
information trying to prove it is not their fault.

> 
> > Safari does this, but not do
> > it by simulating clicking the first submit button as IE and Firefox does. 
> 
> This sounds like something we may want to fix, even if it isn't required by
> HTML4. I haven't been able to re-create the problem from the description though
> - could you please explain it in more detail, ideally by attaching a test case
> that shows the difference?
> 

Below is a short piece of html code that emulates Oracle's eBusiness suite
login screen and demonstrates the problem. I'd be glad to open up another bug
report if you think it is a problem. Well it is a problem for us - or at least
an irritation.

Filling in the username and password then entering the enter/return key just
submits the form in Safari. (no javascript is called)

Clicking either button simulates their javascript submitForm function.

In Firefox, and I assume IE, filling in the username and password then entering
the enter/return key seems to do a submit by clicking the first button/input
with the type "submit"


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

        <title>untitled</title>
        <script type="text/javascript" charset="utf-8">
                function submitForm(a0,a1,a2){
                        alert(a1)
                        //assume they do a submit in their function
                }
        </script>
</head>

<body>
<form action="" method="get" accept-charset="utf-8">
        <p>
                Username <input id="usernameField" title="User Name"
class=".LoginText" onkeypress="return _submitOnEnter(event,
'DefaultFormName');" onchange="" name="usernameField" size="0" type="text"
value="" />
        <p>
                Password <input id="passwordField" title="Password"
class=".LoginText" onchange="" name="passwordField" size="0" type="password" />
        </p>
        <button id="SubmitButton" title="Login" class="x7g" 
onclick="submitForm('DefaultFormName',1,{'_FORM_SUBMIT_BUTTON':'SubmitButton'});return
false" type="submit">Login</button>
        <button id="Cancel" title="Cancel" class="x7g" 
onclick=submitForm('DefaultFormName',0,{'_FORM_SUBMIT_BUTTON':'Cancel'});return
false" type="submit">Cancel</button>

</form>

</body>
</html>


-- 
Configure bugmail: https://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