<?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>148435</bug_id>
          
          <creation_ts>2015-08-25 10:08:23 -0700</creation_ts>
          <short_desc>storage/domstorage/events/basic-body-attribute.html is flaky</short_desc>
          <delta_ts>2018-12-03 16:06:25 -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>WebCore Misc.</component>
          <version>Other</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>REOPENED</bug_status>
          <resolution></resolution>
          
          <see_also>https://bugs.webkit.org/show_bug.cgi?id=155201</see_also>
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Alexey Proskuryakov">ap</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>andersca</cc>
    
    <cc>commit-queue</cc>
    
    <cc>ryanhaddad</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1120619</commentid>
    <comment_count>0</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2015-08-25 10:08:23 -0700</bug_when>
    <thetext>storage/domstorage/events/basic-body-attribute.html became flaky on Mavericks, Yosemite and ELF WK2 bots around a week ago (first failure on August 18th).

https://webkit-test-results.webkit.org/dashboards/flakiness_dashboard.html#showAllRuns=true&amp;tests=storage%2Fdomstorage%2F&amp;showExpectations=true&amp;revision=188905

--- /Volumes/Data/slave/mavericks-release-tests-wk2/build/layout-test-results/storage/domstorage/events/basic-body-attribute-expected.txt
+++ /Volumes/Data/slave/mavericks-release-tests-wk2/build/layout-test-results/storage/domstorage/events/basic-body-attribute-actual.txt
@@ -57,41 +57,46 @@
 Reset storage event list
 storageEventList = new Array()
 storage.setItem(&apos;FOO&apos;, &apos;BAR&apos;)
-PASS storageEventList.length is 1
-PASS storageEventList[0].key is &quot;FOO&quot;
+FAIL got at least 2, expected only 1 events
+FAIL storageEventList.length should be 1. Was 2.
+FAIL storageEventList[0].key should be FOO. Was .
 PASS storageEventList[0].oldValue is null
-PASS storageEventList[0].newValue is &quot;BAR&quot;
+FAIL storageEventList[0].newValue should be BAR (of type string). Was null (of type object).
 storage.setItem(&apos;FU&apos;, &apos;BAR&apos;)
 storage.setItem(&apos;a&apos;, &apos;1&apos;)
 storage.setItem(&apos;b&apos;, &apos;2&apos;)
 storage.setItem(&apos;b&apos;, &apos;3&apos;)
-PASS storageEventList.length is 5
-PASS storageEventList[1].key is &quot;FU&quot;
+FAIL got at least 6, expected only 5 events
+FAIL storageEventList.length should be 5. Was 6.
+FAIL storageEventList[1].key should be FU. Was FOO.
 PASS storageEventList[1].oldValue is null
 PASS storageEventList[1].newValue is &quot;BAR&quot;
-PASS storageEventList[2].key is &quot;a&quot;
+FAIL storageEventList[2].key should be a. Was FU.
 PASS storageEventList[2].oldValue is null
-PASS storageEventList[2].newValue is &quot;1&quot;
-PASS storageEventList[3].key is &quot;b&quot;
+FAIL storageEventList[2].newValue should be 1. Was BAR.
+FAIL storageEventList[3].key should be b. Was a.
 PASS storageEventList[3].oldValue is null
-PASS storageEventList[3].newValue is &quot;2&quot;
+FAIL storageEventList[3].newValue should be 2. Was 1.
 PASS storageEventList[4].key is &quot;b&quot;
-PASS storageEventList[4].oldValue is &quot;2&quot;
-PASS storageEventList[4].newValue is &quot;3&quot;
+FAIL storageEventList[4].oldValue should be 2 (of type string). Was null (of type object).
+FAIL storageEventList[4].newValue should be 3. Was 2.
 storage.removeItem(&apos;FOO&apos;)
-PASS storageEventList.length is 6
-PASS storageEventList[5].key is &quot;FOO&quot;
-PASS storageEventList[5].oldValue is &quot;BAR&quot;
-PASS storageEventList[5].newValue is null
+FAIL got at least 7, expected only 6 events
+FAIL storageEventList.length should be 6. Was 7.
+FAIL storageEventList[5].key should be FOO. Was b.
+FAIL storageEventList[5].oldValue should be BAR. Was 2.
+FAIL storageEventList[5].newValue should be null (of type object). Was 3 (of type string).
 storage.removeItem(&apos;FU&apos;)
-PASS storageEventList.length is 7
-PASS storageEventList[6].key is &quot;FU&quot;
+FAIL got at least 8, expected only 7 events
+FAIL storageEventList.length should be 7. Was 8.
+FAIL storageEventList[6].key should be FU. Was FOO.
 PASS storageEventList[6].oldValue is &quot;BAR&quot;
 PASS storageEventList[6].newValue is null
 storage.clear()
-PASS storageEventList.length is 8
-PASS storageEventList[7].key is &quot;&quot;
-PASS storageEventList[7].oldValue is null
+FAIL got at least 9, expected only 8 events
+FAIL storageEventList.length should be 8. Was 9.
+FAIL storageEventList[7].key should be . Was FU.
+FAIL storageEventList[7].oldValue should be null (of type object). Was BAR (of type string).
 PASS storageEventList[7].newValue is null</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1121198</commentid>
    <comment_count>1</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2015-08-26 21:52:36 -0700</bug_when>
    <thetext>Some timing change must have happened, but the test failed before last week, too. ASan bot was seeing it.

r188597 was the first revision where this occurred on non-ASan bots.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1131956</commentid>
    <comment_count>2</comment_count>
    <who name="Ryan Haddad">ryanhaddad</who>
    <bug_when>2015-10-09 11:12:26 -0700</bug_when>
    <thetext>Still seeing the flakiness:
https://build.webkit.org/builders/Apple%20Mavericks%20Release%20WK2%20(Tests)/builds/17797

http://webkit-test-results.webkit.org/dashboards/flakiness_dashboard.html#showAllRuns=true&amp;tests=storage%2Fdomstorage%2Fevents%2Fbasic-body-attribute.html</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1132328</commentid>
    <comment_count>3</comment_count>
      <attachid>262893</attachid>
    <who name="Ryan Haddad">ryanhaddad</who>
    <bug_when>2015-10-12 09:54:38 -0700</bug_when>
    <thetext>Created attachment 262893
Patch</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1132330</commentid>
    <comment_count>4</comment_count>
    <who name="Ryan Haddad">ryanhaddad</who>
    <bug_when>2015-10-12 09:55:36 -0700</bug_when>
    <thetext>*** Bug 149969 has been marked as a duplicate of this bug. ***</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1132409</commentid>
    <comment_count>5</comment_count>
      <attachid>262893</attachid>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2015-10-12 12:03:51 -0700</bug_when>
    <thetext>Comment on attachment 262893
Patch

Clearing flags on attachment: 262893

Committed r190877: &lt;http://trac.webkit.org/changeset/190877&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1132410</commentid>
    <comment_count>6</comment_count>
    <who name="WebKit Commit Bot">commit-queue</who>
    <bug_when>2015-10-12 12:03:56 -0700</bug_when>
    <thetext>All reviewed patches have been landed.  Closing bug.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1132435</commentid>
    <comment_count>7</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2015-10-12 12:36:00 -0700</bug_when>
    <thetext>Re-opening, as this is not fixed.</thetext>
  </long_desc>
      
          <attachment
              isobsolete="0"
              ispatch="1"
              isprivate="0"
          >
            <attachid>262893</attachid>
            <date>2015-10-12 09:54:38 -0700</date>
            <delta_ts>2015-10-12 12:03:51 -0700</delta_ts>
            <desc>Patch</desc>
            <filename>bug-148435-20151012095403.patch</filename>
            <type>text/plain</type>
            <size>1467</size>
            <attacher name="Ryan Haddad">ryanhaddad</attacher>
            
              <data encoding="base64">U3VidmVyc2lvbiBSZXZpc2lvbjogMTkwODU1CmRpZmYgLS1naXQgYS9MYXlvdXRUZXN0cy9DaGFu
Z2VMb2cgYi9MYXlvdXRUZXN0cy9DaGFuZ2VMb2cKaW5kZXggOGU1NjExZmUyZDlhNWM5NDc4ZWVl
ZjIzNzViMjdiZjZkYTE2ZGQyOC4uNjk1NTliZmZhYjcyMmQ5YWMzNjBiYTFhZDI2MmI1MmUxMjBk
MGMwZCAxMDA2NDQKLS0tIGEvTGF5b3V0VGVzdHMvQ2hhbmdlTG9nCisrKyBiL0xheW91dFRlc3Rz
L0NoYW5nZUxvZwpAQCAtMSwzICsxLDEyIEBACisyMDE1LTEwLTEyICBSeWFuIEhhZGRhZCAgPHJ5
YW5oYWRkYWRAYXBwbGUuY29tPgorCisgICAgICAgIE1hcmtpbmcgc3RvcmFnZS9kb21zdG9yYWdl
L2V2ZW50cy9iYXNpYy1ib2R5LWF0dHJpYnV0ZS5odG1sIGFzIGZsYWt5CisgICAgICAgIGh0dHBz
Oi8vYnVncy53ZWJraXQub3JnL3Nob3dfYnVnLmNnaT9pZD0xNDg0MzUKKworICAgICAgICBSZXZp
ZXdlZCBieSBOT0JPRFkgKE9PUFMhKS4KKworICAgICAgICAqIHBsYXRmb3JtL21hYy9UZXN0RXhw
ZWN0YXRpb25zOgorCiAyMDE1LTEwLTExICBNeWxlcyBDLiBNYXhmaWVsZCAgPG1tYXhmaWVsZEBh
cHBsZS5jb20+CiAKICAgICAgICAgVGVzdCBmb250LXZhcmlhbnQtKiBhbmQgZm9udC1mZWF0dXJl
LXNldHRpbmdzIHdpdGggbW9ja2VkIHByZWluc3RhbGxlZCBmb250cwpkaWZmIC0tZ2l0IGEvTGF5
b3V0VGVzdHMvcGxhdGZvcm0vbWFjL1Rlc3RFeHBlY3RhdGlvbnMgYi9MYXlvdXRUZXN0cy9wbGF0
Zm9ybS9tYWMvVGVzdEV4cGVjdGF0aW9ucwppbmRleCAzYzNkM2QyZThkNGNlOTg3YzYyYmU0MjEw
NGNhMGM2MzVhZGRiNzNlLi5kOTIxOTRiZjY4MzBlMTJhNmY2MGNlYzk2ODBhMDkyNWJmODU4OGIy
IDEwMDY0NAotLS0gYS9MYXlvdXRUZXN0cy9wbGF0Zm9ybS9tYWMvVGVzdEV4cGVjdGF0aW9ucwor
KysgYi9MYXlvdXRUZXN0cy9wbGF0Zm9ybS9tYWMvVGVzdEV4cGVjdGF0aW9ucwpAQCAtMTMzNiw1
ICsxMzM2LDggQEAgd2Via2l0Lm9yZy9iLzE0OTQ0MSBmYXN0L3NoYWRvdy1kb20vY3NzLXNjb3Bp
bmctc2hhZG93LXNsb3QtZGlzcGxheS1vdmVycmlkZS5odG0KICMgTWFya2luZyB0ZXN0IGFzIGZs
YWt5IGluIEVsIENhcGl0YW4KIHdlYmtpdC5vcmcvYi8xNDk4MTkgWyBEZWJ1ZyBFbENhcGl0YW4r
IF0gY29tcG9zaXRpbmcvdmlkZW8vdmlkZW8tcG9zdGVyLmh0bWwgWyBQYXNzIENyYXNoIF0KIAor
IyBGbGFreSBvbiBNYWMKK3dlYmtpdC5vcmcvYi8xNDg0MzUgc3RvcmFnZS9kb21zdG9yYWdlL2V2
ZW50cy9iYXNpYy1ib2R5LWF0dHJpYnV0ZS5odG1sIFsgUGFzcyBGYWlsdXJlIF0KKwogIyBJbXBv
cnRlZCBCbGluayB0ZXN0cyB3aGljaCBoYXZlIG5vdCBiZWVuIGludmVzdGlnYXRlZC4KIGltcG9y
dGVkL2JsaW5rL2NvbXBvc2l0aW5nL3ZpZGVvL3ZpZGVvLWNvbnRyb2xzLWxheWVyLWNyZWF0aW9u
LXNxdWFzaGluZy5odG1sIFsgUGFzcyBJbWFnZU9ubHlGYWlsdXJlIF0K
</data>

          </attachment>
      

    </bug>

</bugzilla>