<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>75950</bug_id>
          
          <creation_ts>2012-01-10 03:47:55 -0800</creation_ts>
          <short_desc>[WK2] fast/loader/submit-form-while-parsing-2.html fails intermittently</short_desc>
          <delta_ts>2024-01-03 14:09:19 -0800</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>Tools / Tests</component>
          <version>528+ (Nightly build)</version>
          <rep_platform>All</rep_platform>
          <op_sys>All</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>DUPLICATE</resolution>
          <dup_id>105952</dup_id>
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>Qt, QtTriaged</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Csaba Osztrogonác">ossy</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>ahmad.saleem792</cc>
    
    <cc>ap</cc>
    
    <cc>beidson</cc>
    
    <cc>japhet</cc>
    
    <cc>ossy</cc>
    
    <cc>slewis</cc>
    
    <cc>webkit-sed</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>532948</commentid>
    <comment_count>0</comment_count>
    <who name="Csaba Osztrogonác">ossy</who>
    <bug_when>2012-01-10 03:47:55 -0800</bug_when>
    <thetext>fast/loader/submit-form-while-parsing-2.html fails intermittently
(17 times during 200 builds) on the Qt-WK2 bot with this error:

--- /ramdisk/qt-linux-32-release-webkit2/build/layout-test-results/fast/loader/submit-form-while-parsing-2-expected.txt 
+++ /ramdisk/qt-linux-32-release-webkit2/build/layout-test-results/fast/loader/submit-form-while-parsing-2-actual.txt 
@@ -1,3 +1,2 @@
-PASSED: If we successfully got here without an assertion or crash, all is well.
+FAIL: Timed out waiting for notifyDone to be called
 
-</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>532965</commentid>
    <comment_count>1</comment_count>
    <who name="Csaba Osztrogonác">ossy</who>
    <bug_when>2012-01-10 04:31:39 -0800</bug_when>
    <thetext>You can easily reproduce this bug: $ Tools/Scripts/old-run-webkit-tests -2 fast/loader/submit-form-while-parsing-2.html --iterations 100

Testing 1 test cases 100 times.
fast/loader .
fast/loader/submit-form-while-parsing-2.html -&gt; failed
...............
fast/loader/submit-form-while-parsing-2.html -&gt; failed
...
fast/loader/submit-form-while-parsing-2.html -&gt; failed
.
fast/loader/submit-form-while-parsing-2.html -&gt; failed
.............
fast/loader/submit-form-while-parsing-2.html -&gt; failed
..........
fast/loader/submit-form-while-parsing-2.html -&gt; failed
..
fast/loader/submit-form-while-parsing-2.html -&gt; failed
.
fast/loader/submit-form-while-parsing-2.html -&gt; failed
.......
fast/loader/submit-form-while-parsing-2.html -&gt; failed
...........................
fast/loader/submit-form-while-parsing-2.html -&gt; failed
..............
fast/loader/submit-form-while-parsing-2.html -&gt; failed
.
fast/loader/submit-form-while-parsing-2.html -&gt; failed
....
fast/loader/submit-form-while-parsing-2.html -&gt; failed
.
80.61s total testing time

87 test cases (87%) succeeded
13 test cases (13%) had incorrect layout</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>533031</commentid>
    <comment_count>2</comment_count>
    <who name="Csaba Osztrogonác">ossy</who>
    <bug_when>2012-01-10 06:59:10 -0800</bug_when>
    <thetext>I skipped it to make Qt-wk2 bot happier: http://trac.webkit.org/changeset/104561</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>721131</commentid>
    <comment_count>3</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2012-09-14 14:29:43 -0700</bug_when>
    <thetext>I&apos;m seeing this fail on Mac frequently too (and can reproduce locally).</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>721220</commentid>
    <comment_count>4</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2012-09-14 16:00:37 -0700</bug_when>
    <thetext>This test loads a subframe that immediately submits a form, and also starts a zero-delay timer that starts another navigation.

In WK1, the timer doesn&apos;t get a chance to fire, as form submission happens first.

In WK2, the timer fires and starts a navigation. The URL it uses is incorrect (there should be no &quot;resources/&quot; part), so instead of successful load, we get an error. But there is a race between navigation and form submission - when submission happens first, we get a load event and pass, and when navigation happens first, we get a timeout.

It&apos;s easy to fix the timeout by fixing the URL, but we&apos;ll still have a race between navigation and form submission. I&apos;m not sure if it&apos;s a well defined situation.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>721224</commentid>
    <comment_count>5</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2012-09-14 16:06:36 -0700</bug_when>
    <thetext>Fixed the URL in r128665 to make the test a bit more reasonable. Not yet sure what to do about the race.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>2002865</commentid>
    <comment_count>6</comment_count>
    <who name="Ahmad Saleem">ahmad.saleem792</who>
    <bug_when>2024-01-03 14:09:19 -0800</bug_when>
    <thetext>Qt port is gone but the platform specific expectation of &apos;Mac-wk2&apos; is on different bug. I am marking this duplicate of it to other bug.

*** This bug has been marked as a duplicate of bug 105952 ***</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>