Changeset 235669 in webkit


Ignore:
Timestamp:
Sep 5, 2018 8:22:15 AM (6 years ago)
Author:
Ms2ger@igalia.com
Message:

GTK-focused gardening
https://bugs.webkit.org/show_bug.cgi?id=189305

Unreviewed test gardening.

  • TestExpectations: Remove passing test.
  • fast/mediastream/RTCPeerConnection-media-setup-callbacks-single-dialog.html: Speculative fix for r235484.
  • platform/gtk/http/tests/inspector/network/resource-request-headers-expected.txt: Added.
  • platform/gtk/http/tests/loading/oauth-expected.txt: Added.
  • platform/gtk/http/tests/websocket/connection-refusal-in-frame-resource-load-statistics-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/xhr/send-network-error-sync-events.sub-expected.txt: Updated for r235354.
  • platform/gtk/js/dom/dom-static-property-for-in-iteration-expected.txt: Updated for r235245.
Location:
trunk/LayoutTests
Files:
4 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r235660 r235669  
     12018-09-05  Ms2ger  <Ms2ger@igalia.com>
     2
     3        GTK-focused gardening
     4        https://bugs.webkit.org/show_bug.cgi?id=189305
     5
     6        Unreviewed test gardening.
     7
     8        * TestExpectations: Remove passing test.
     9        * fast/mediastream/RTCPeerConnection-media-setup-callbacks-single-dialog.html: Speculative fix for r235484.
     10        * platform/gtk/http/tests/inspector/network/resource-request-headers-expected.txt: Added.
     11        * platform/gtk/http/tests/loading/oauth-expected.txt: Added.
     12        * platform/gtk/http/tests/websocket/connection-refusal-in-frame-resource-load-statistics-expected.txt: Added.
     13        * platform/gtk/imported/w3c/web-platform-tests/xhr/send-network-error-sync-events.sub-expected.txt: Updated for r235354.
     14        * platform/gtk/js/dom/dom-static-property-for-in-iteration-expected.txt: Updated for r235245.
     15
    1162018-09-04  Yacine Bandou  <yacine.bandou_ext@softathome.com>
    217
  • trunk/LayoutTests/TestExpectations

    r235619 r235669  
    276276imported/w3c/web-platform-tests/xhr/preserve-ua-header-on-redirect.htm [ Failure ]
    277277imported/w3c/web-platform-tests/xhr/setrequestheader-case-insensitive.htm [ Failure ]
    278 imported/w3c/web-platform-tests/xhr/send-network-error-async-events.sub.htm [ Failure ]
    279278http/tests/security/cross-origin-cached-images-parallel.html [ DumpJSConsoleLogInStdErr ]
    280279
  • trunk/LayoutTests/fast/mediastream/RTCPeerConnection-media-setup-callbacks-single-dialog.html

    r208057 r235669  
    4141                stream = s;
    4242
    43                 startTestWithMedia();
     43                return startTestWithMedia();
    4444            })
    4545            .catch(function (error) {
     
    5353
    5454                debug("A: create offer");
    55                 return pcA.createOffer(offer => {
     55                return pcA.createOffer().then(offer => {
    5656                    debug("A: got offer, set it as local description");
    57                     pcA.setLocalDescription(offer, () => {
     57                    return pcA.setLocalDescription(offer).then(() => {
    5858                        debug("A: local offer set");
    5959                        shouldBe("pcA.signalingState", "'have-local-offer'");
     
    6161                        debug("A: send offer to B");
    6262                        debug("A --- offer --> B");
    63                         offerToPcB(pcA.localDescription);
     63                        return offerToPcB(pcA.localDescription);
    6464                    }, gotError);
    6565
     
    6969            function offerToPcB(offer) {
    7070                debug("B: got offer from A, set it as remote description");
    71                 pcB.setRemoteDescription(offer, () => {
     71                return pcB.setRemoteDescription(offer).then(() => {
    7272                    debug("B: remote offer set");
    7373                    shouldBe("pcB.signalingState", "'have-remote-offer'");
     
    7777
    7878                    debug("B: create answer");
    79                     return pcB.createAnswer(answer => {
     79                    return pcB.createAnswer().then(answer => {
    8080                        debug("B: got answer, set it as local description");
    81                         pcB.setLocalDescription(answer, () => {
     81                        return pcB.setLocalDescription(answer).then(() => {
    8282                            debug("B: local answer set");
    8383                            shouldBe("pcB.signalingState", "'stable'");
     
    8585                            debug("B: send answer to A");
    8686                            debug("A <-- answer -- B");
    87                             answerToA(pcB.localDescription);
     87                            return answerToA(pcB.localDescription);
    8888                        }, gotError);
    8989                    }, gotError);
     
    9393            function answerToA(answer) {
    9494                debug("A: got answer from B, set it as remote description");
    95                 pcA.setRemoteDescription(answer, () => {
     95                return pcA.setRemoteDescription(answer).then(() => {
    9696                    debug("A: remote answer set");
    9797                    shouldBe("pcA.signalingState", "'stable'");
  • trunk/LayoutTests/platform/gtk/imported/w3c/web-platform-tests/xhr/send-network-error-sync-events.sub-expected.txt

    r235354 r235669  
    1 Blocked access to external URL http://nonexistent-origin.localhost:8800/
     1Blocked access to external URL http://nonexistent.localhost:8800/
    22
    33PASS http URL
  • trunk/LayoutTests/platform/gtk/js/dom/dom-static-property-for-in-iteration-expected.txt

    r229851 r235669  
    5252PASS a["outerText"] is nerget
    5353PASS a["webkitdropzone"] is
     54PASS a["inputMode"] is
    5455PASS a["style"] is [object CSSStyleDeclaration]
    5556PASS a["onabort"] is null
Note: See TracChangeset for help on using the changeset viewer.