Changeset 252299 in webkit


Ignore:
Timestamp:
Nov 8, 2019 6:44:57 PM (4 years ago)
Author:
youenn@apple.com
Message:

XMLHttpRequestUpload should be exposed in dedicated workers
https://bugs.webkit.org/show_bug.cgi?id=203901

Reviewed by Alex Christensen.

LayoutTests/imported/w3c:

  • web-platform-tests/workers/semantics/interface-objects/001.worker-expected.txt:
  • web-platform-tests/xhr/idlharness.any.worker-expected.txt:

Source/WebCore:

Covered by rebased test.

  • xml/XMLHttpRequestUpload.idl:
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/imported/w3c/ChangeLog

    r252076 r252299  
     12019-11-08  youenn fablet  <youenn@apple.com>
     2
     3        XMLHttpRequestUpload should be exposed in dedicated workers
     4        https://bugs.webkit.org/show_bug.cgi?id=203901
     5
     6        Reviewed by Alex Christensen.
     7
     8        * web-platform-tests/workers/semantics/interface-objects/001.worker-expected.txt:
     9        * web-platform-tests/xhr/idlharness.any.worker-expected.txt:
     10
    1112019-11-05  Oriol Brufau  <obrufau@igalia.com>
    212
  • trunk/LayoutTests/imported/w3c/web-platform-tests/workers/semantics/interface-objects/001.worker-expected.txt

    r249719 r252299  
    3333PASS The DataView interface object should be exposed.
    3434PASS The XMLHttpRequestEventTarget interface object should be exposed.
    35 FAIL The XMLHttpRequestUpload interface object should be exposed. assert_own_property: expected property "XMLHttpRequestUpload" missing
     35PASS The XMLHttpRequestUpload interface object should be exposed.
    3636PASS The XMLHttpRequest interface object should be exposed.
    3737PASS The ProgressEvent interface object should be exposed.
  • trunk/LayoutTests/imported/w3c/web-platform-tests/xhr/idlharness.any.worker-expected.txt

    r249672 r252299  
    1414PASS XMLHttpRequestEventTarget interface: attribute ontimeout
    1515PASS XMLHttpRequestEventTarget interface: attribute onloadend
    16 FAIL XMLHttpRequestUpload interface: existence and properties of interface object assert_own_property: self does not have own property "XMLHttpRequestUpload" expected property "XMLHttpRequestUpload" missing
    17 FAIL XMLHttpRequestUpload interface object length assert_own_property: self does not have own property "XMLHttpRequestUpload" expected property "XMLHttpRequestUpload" missing
    18 FAIL XMLHttpRequestUpload interface object name assert_own_property: self does not have own property "XMLHttpRequestUpload" expected property "XMLHttpRequestUpload" missing
    19 FAIL XMLHttpRequestUpload interface: existence and properties of interface prototype object assert_own_property: self does not have own property "XMLHttpRequestUpload" expected property "XMLHttpRequestUpload" missing
    20 FAIL XMLHttpRequestUpload interface: existence and properties of interface prototype object's "constructor" property assert_own_property: self does not have own property "XMLHttpRequestUpload" expected property "XMLHttpRequestUpload" missing
    21 FAIL XMLHttpRequestUpload interface: existence and properties of interface prototype object's @@unscopables property assert_own_property: self does not have own property "XMLHttpRequestUpload" expected property "XMLHttpRequestUpload" missing
    22 FAIL XMLHttpRequestUpload must be primary interface of (new XMLHttpRequest()).upload assert_own_property: self does not have own property "XMLHttpRequestUpload" expected property "XMLHttpRequestUpload" missing
     16PASS XMLHttpRequestUpload interface: existence and properties of interface object
     17PASS XMLHttpRequestUpload interface object length
     18PASS XMLHttpRequestUpload interface object name
     19PASS XMLHttpRequestUpload interface: existence and properties of interface prototype object
     20PASS XMLHttpRequestUpload interface: existence and properties of interface prototype object's "constructor" property
     21PASS XMLHttpRequestUpload interface: existence and properties of interface prototype object's @@unscopables property
     22PASS XMLHttpRequestUpload must be primary interface of (new XMLHttpRequest()).upload
    2323PASS Stringification of (new XMLHttpRequest()).upload
    2424PASS XMLHttpRequestEventTarget interface: (new XMLHttpRequest()).upload must inherit property "onloadstart" with the proper type
  • trunk/Source/WebCore/ChangeLog

    r252297 r252299  
     12019-11-08  youenn fablet  <youenn@apple.com>
     2
     3        XMLHttpRequestUpload should be exposed in dedicated workers
     4        https://bugs.webkit.org/show_bug.cgi?id=203901
     5
     6        Reviewed by Alex Christensen.
     7
     8        Covered by rebased test.
     9
     10        * xml/XMLHttpRequestUpload.idl:
     11
    1122019-11-08  Jiewen Tan  <jiewen_tan@apple.com>
    213
  • trunk/Source/WebCore/xml/XMLHttpRequestUpload.idl

    r196599 r252299  
    2828
    2929[
     30    Exposed=(Window,Worker),
    3031    GenerateIsReachable=Impl,
    3132    JSGenerateToJSObject,
Note: See TracChangeset for help on using the changeset viewer.