[Webkit-unassigned] [Bug 14814] New: [S60]

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jul 30 11:45:06 PDT 2007


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

           Summary: [S60]
           Product: WebKit
           Version: 522+ (nightly)
          Platform: S60 Emulator
        OS/Version: S60 3rd edition
            Status: NEW
          Keywords: PlatformOnly
          Severity: Blocker
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: sornalatha.rathnasamy at nokia.com


TSW Id : ELTA-756J4Z

- Use case:

- Steps to reproduce:

- Actual outcome:
When user focused the different links, the other sections are not hidden.

- Expected outcome:
Please see Global Test Specification for Terminals (TST Browsing) for Expected
Results.

- Other info:
Tested with  WAP APN


sample test case:

<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<div>
<a href="" id="link1" onfocus="link1();" onblur="linkNone();">link 1</a>
<a href="http://www.google.com" id="link2" onfocus="link2();"
onblur="linkNone();">link 

2</a>
<a href="http://www.google.com" id="link3" onfocus="link3();"
onblur="linkNone();">link 

3</a>
</div>

<div id="section1">this is section 1</div>
<div id="section2">this is section 2</div>
<div id="section3">this is section 3</div>

<script type="text/javascript">

function link1(){
alert("on focus called");
  document.getElementById("section1").style.visibility = 'visible';
  document.getElementById("section2").style.visibility = 'hidden';
  document.getElementById("section3").style.visibility = 'hidden';
}

function link2(){
  document.getElementById("section1").style.visibility = 'hidden';
  document.getElementById("section2").style.visibility = 'visible';
  document.getElementById("section3").style.visibility = 'hidden';
}

function link3(){
  document.getElementById("section1").style.visibility = 'hidden';
  document.getElementById("section2").style.visibility = 'hidden';
  document.getElementById("section3").style.visibility = 'visible';
}

function linkNone(){
  document.getElementById("section1").style.visibility = 'visible';
  document.getElementById("section2").style.visibility = 'visible';
  document.getElementById("section3").style.visibility = 'visible';
}

</script>
</body>
</html>




This is a SS and blocks type approval.


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