[webkit-changes] cvs commit: LayoutTests/fast/dom/resources a.html b.html

Maciej mjs at opensource.apple.com
Wed Oct 5 23:22:38 PDT 2005


mjs         05/10/05 23:22:37

  Modified:    .        ChangeLog
  Added:       fast/dom early-frame-url-expected.txt early-frame-url.html
               fast/dom/resources a.html b.html
  Log:
         	Test cases for <rdar://problem/3798746> hang in JavaScript getting at URL from frame; isc.fraunhofer.de (works in IE and Firefox)
  
          * ChangeLog:
          * fast/dom/early-frame-url-expected.txt: Added.
          * fast/dom/early-frame-url.html: Added.
          * fast/dom/resources/a.html: Added.
          * fast/dom/resources/b.html: Added.
  
  Revision  Changes    Path
  1.12      +22 -0     LayoutTests/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/LayoutTests/ChangeLog,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- ChangeLog	5 Oct 2005 20:54:30 -0000	1.11
  +++ ChangeLog	6 Oct 2005 06:22:36 -0000	1.12
  @@ -1,3 +1,13 @@
  +2005-10-05  Maciej Stachowiak  <mjs at apple.com>
  +
  +       	Test cases for <rdar://problem/3798746> hang in JavaScript getting at URL from frame; isc.fraunhofer.de (works in IE and Firefox)
  +
  +        * ChangeLog:
  +        * fast/dom/early-frame-url-expected.txt: Added.
  +        * fast/dom/early-frame-url.html: Added.
  +        * fast/dom/resources/a.html: Added.
  +        * fast/dom/resources/b.html: Added.
  +
   2005-10-05  Justin Garcia  <justin.garcia at apple.com>
   
           Reviewed by beth
  @@ -22,6 +32,18 @@
   
   2005-10-05  Maciej Stachowiak  <mjs at apple.com>
   
  +        Reviewed by NOBODY (OOPS!).
  +
  +	Test case for:
  +	<rdar://problem/3798746> hang in JavaScript getting at URL from frame; isc.fraunhofer.de (works in IE and Firefox)
  +
  +        * fast/dom/early-frame-url.html
  +        * fast/dom/early-frame-url-expected.txt: Added.
  +        * fast/dom/resources/a.html: Added.
  +        * fast/dom/resources/b.html: Added.
  +
  +2005-10-05  Maciej Stachowiak  <mjs at apple.com>
  +
           Reviewed by Eric.
   
           - test case for some fixes I made to for..in enumeration. object
  
  
  
  1.1                  LayoutTests/fast/dom/early-frame-url-expected.txt
  
  Index: early-frame-url-expected.txt
  ===================================================================
  
  
  
  
  1.1                  LayoutTests/fast/dom/early-frame-url.html
  
  Index: early-frame-url.html
  ===================================================================
  <script>
  if (window.layoutTestController) {
      layoutTestController.dumpAsText();
      layoutTestController.waitUntilDone();
  }
  </script>
  <frameset cols="190,*" frameborder="0" border="0" framespacing="0">
  <frameset rows="*, 100" border="0" frameborder="0" framespacing="0">
  <frame name="nav" src="resources/a.html">
  <frame name="service" src="resources/b.html">
  </frameset>
  </frameset>
  
  
  
  1.1                  LayoutTests/fast/dom/resources/a.html
  
  Index: a.html
  ===================================================================
  <HTML>
  <HEAD>
  <SCRIPT>
  function writeDot()
  {
      while(!parent.frames[1].document.URL) { }
  }
  </SCRIPT>
  </HEAD>
  <BODY>
  This test checks whether document.URL is initially set to an empty
  value or "about:blank" for frames. The right answer is
  "about:blank". If it is empty, then this test will hang.
  	<script>
  	writeDot();
  	if (window.layoutTestController)
  	    layoutTestController.notifyDone();
  	</script>
  </BODY>
  </HTML>
  
  
  
  1.1                  LayoutTests/fast/dom/resources/b.html
  
  Index: b.html
  ===================================================================
  B
  
  



More information about the webkit-changes mailing list