Changeset 63519 in webkit


Ignore:
Timestamp:
Jul 15, 2010 10:28:11 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-07-15 Adam Barth <abarth@webkit.org>

Reviewed by Darin Adler.

fast/frames/contentWindow_Frame.html shouldn't depend on <body> before <frameset>
https://bugs.webkit.org/show_bug.cgi?id=42349

  • fast/frames/contentWindow_Frame.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r63517 r63519  
     12010-07-15  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        fast/frames/contentWindow_Frame.html shouldn't depend on <body> before <frameset>
     6        https://bugs.webkit.org/show_bug.cgi?id=42349
     7
     8        * fast/frames/contentWindow_Frame.html:
     9
    1102010-07-15  Adam Barth  <abarth@webkit.org>
    211
  • trunk/LayoutTests/fast/frames/contentWindow_Frame.html

    r11995 r63519  
    33<head>
    44
    5         <title>Testing contentWindow on Frames</title>
     5  <title>Testing contentWindow on Frames</title>
    66
    7         <script>
    8                 function putText()
    9                 {
    10                         var t = document.getElementById("t_frame");
    11                         var b = document.getElementById("b_frame");
    12        
    13                         var dv = t.contentDocument.getElementById("my_div");
    14                        
    15                         dv.innerText = b.contentWindow.location;
     7  <script>
     8    function putText()
     9    {
     10      var t = document.getElementById("t_frame");
     11      var b = document.getElementById("b_frame");
     12 
     13      var dv = t.contentDocument.getElementById("my_div");
     14     
     15      dv.innerText = b.contentWindow.location;
    1616
    17                 }
    18         </script>
     17    }
     18
     19    window.onload = putText;
     20  </script>
    1921
    2022</head>
    21 
    22 <body onload="putText()">
    2323
    2424  <FRAMESET rows="30%, 70%">
     
    2727 </FRAMESET>
    2828
    29 </body>
    30 
    3129</html>
Note: See TracChangeset for help on using the changeset viewer.