Changeset 201938 in webkit


Ignore:
Timestamp:
Jun 10, 2016 1:38:35 PM (8 years ago)
Author:
weinig@apple.com
Message:

Refactor TestWebKitAPI to allow just testing WTF
https://bugs.webkit.org/show_bug.cgi?id=158625

Reviewed by Tim Horton.

Extract all the WTF tests into a new target to allow a faster build / test / fix
cycle when working on WTF bugs and features.

By calling run-api-tests --wtf-only, you don't need to have a build of JavaScriptCore/WebCore/etc
to test WTF only changes.

  • Scripts/build-api-tests:
  • Scripts/run-api-tests:

(buildTestTool):
(testToolPaths):
Add new options to build-api-tests and run-api-tests to only build/run the WTF test runner.

  • TestWebKitAPI/CMakeLists.txt:
  • TestWebKitAPI/Configurations/TestWTF.xcconfig: Added.
  • TestWebKitAPI/Configurations/TestWTFLibrary.xcconfig: Added.
  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:

Add two new targets, TestWTFLibrary which contains all the WTF tests, and TestWTF,
the test runner that runs the WTF tests.

  • TestWebKitAPI/Tests/WTF/RunLoop.cpp:

Use Utilities.h rather than PlatformUtilities.h.

  • TestWebKitAPI/Utilities.h: Added.
  • TestWebKitAPI/PlatformUtilities.h:
  • TestWebKitAPI/cocoa/PlatformUtilitiesCocoa.mm:
  • TestWebKitAPI/cocoa/UtilitiesCocoa.mm: Added.

Move the sleep and run functions into a new Utilities.h/cpp file. This file contains utilities
that don't depend on anything in the WebKit project.

Location:
trunk/Tools
Files:
4 added
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r201932 r201938  
     12016-06-10  Sam Weinig  <sam@webkit.org>
     2
     3        Refactor TestWebKitAPI to allow just testing WTF
     4        https://bugs.webkit.org/show_bug.cgi?id=158625
     5
     6        Reviewed by Tim Horton.
     7
     8        Extract all the WTF tests into a new target to allow a faster build / test / fix
     9        cycle when working on WTF bugs and features.
     10       
     11        By calling `run-api-tests --wtf-only`, you don't need to have a build of JavaScriptCore/WebCore/etc
     12        to test WTF only changes.
     13
     14        * Scripts/build-api-tests:
     15        * Scripts/run-api-tests:
     16        (buildTestTool):
     17        (testToolPaths):
     18        Add new options to build-api-tests and run-api-tests to only build/run the WTF test runner.
     19
     20        * TestWebKitAPI/CMakeLists.txt:
     21        * TestWebKitAPI/Configurations/TestWTF.xcconfig: Added.
     22        * TestWebKitAPI/Configurations/TestWTFLibrary.xcconfig: Added.
     23        * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
     24        Add two new targets, TestWTFLibrary which contains all the WTF tests, and TestWTF,
     25        the test runner that runs the WTF tests.
     26   
     27        * TestWebKitAPI/Tests/WTF/RunLoop.cpp:
     28        Use Utilities.h rather than PlatformUtilities.h.
     29
     30        * TestWebKitAPI/Utilities.h: Added.
     31        * TestWebKitAPI/PlatformUtilities.h:
     32        * TestWebKitAPI/cocoa/PlatformUtilitiesCocoa.mm:
     33        * TestWebKitAPI/cocoa/UtilitiesCocoa.mm: Added.
     34        Move the sleep and run functions into a new Utilities.h/cpp file. This file contains utilities
     35        that don't depend on anything in the WebKit project.
     36
    1372016-06-10  Brady Eidson  <beidson@apple.com>
    238
  • trunk/Tools/Scripts/build-api-tests

    r151196 r201938  
    3434my $showHelp = 0;
    3535my $clean = 0;
     36my $wtfOnly = 0;
    3637
    3738my $programName = basename($0);
     
    4041  --help        Show this help message
    4142  --clean       Clean up the build directory
     43  --wtf-only    Only build TestWTF and its dependencies
    4244EOF
    4345
     
    4547    'help' => \$showHelp,
    4648    'clean' => \$clean,
     49    'wtf-only' => \$wtfOnly,
    4750);
    4851
     
    6366    buildXCodeProject("xcode/gtest", $clean, XcodeOptions(), @ARGV);
    6467    chdir "../../../Tools/TestWebKitAPI" or die;
    65     $result = buildXCodeProject("TestWebKitAPI", $clean, XcodeOptions(), @ARGV);
     68
     69    my @options = XcodeOptions();
     70    if ($wtfOnly) {
     71        push @options, ("-target", "TestWTF");
     72    }
     73    $result = buildXCodeProject("TestWebKitAPI", $clean, @options, @ARGV);
    6674} elsif (isAppleWinWebKit()) {
    6775    chdir "Tools/TestWebKitAPI" or die;
  • trunk/Tools/Scripts/run-api-tests

    r198231 r201938  
    6161my @testsFailed;
    6262my @testsTimedOut;
     63my $wtfOnly = 0;
     64my %testToToolMap;
     65
    6366
    6467my $programName = basename($0);
     
    7275  --show-leaks          Show leaks in the output
    7376  --no-timeout          Disable test timeouts
     77  --wtf-only            Only build and run TestWTF
    7478
    7579Platform options:
     
    9599    'dump|d' => \$dumpTests,
    96100    'build!' => \$build,
    97     'root=s' => \$root
     101    'root=s' => \$root,
     102    'wtf-only' => \$wtfOnly,
    98103);
    99104
     
    198203    }
    199204
    200     foreach(testToolPaths()) {
    201         my $pid;
    202         my @commonArguments = ($_, $gtestArg, @ARGV);
    203         if (willUseIOSSimulatorSDK()) {
    204             $pid = open3($childIn, $childOut, $childErr, qw(xcrun --sdk iphonesimulator simctl spawn), $simulatorDevice->{UDID}, @commonArguments) or die "Failed to run test: $test.";
    205         } elsif (isAppleMacWebKit() && architecture()) {
    206             $pid = open3($childIn, $childOut, $childErr, "arch", "-" . architecture(), archCommandLineArgumentsForRestrictedEnvironmentVariables(), @commonArguments) or die "Failed to run test: $test.";
     205    my $pid;
     206    my @commonArguments = ($testToToolMap{$test}, $gtestArg, @ARGV);
     207    if (willUseIOSSimulatorSDK()) {
     208        $pid = open3($childIn, $childOut, $childErr, qw(xcrun --sdk iphonesimulator simctl spawn), $simulatorDevice->{UDID}, @commonArguments) or die "Failed to run test: $test.";
     209    } elsif (isAppleMacWebKit() && architecture()) {
     210        $pid = open3($childIn, $childOut, $childErr, "arch", "-" . architecture(), archCommandLineArgumentsForRestrictedEnvironmentVariables(), @commonArguments) or die "Failed to run test: $test.";
     211    } else {
     212        $pid = open3($childIn, $childOut, $childErr, @commonArguments) or die "Failed to run test: $test.";
     213    }
     214
     215    eval {
     216        if ($disableTimeout) {
     217            waitpid($pid, 0);   
    207218        } else {
    208             $pid = open3($childIn, $childOut, $childErr, @commonArguments) or die "Failed to run test: $test.";
    209         }
    210 
    211         eval {
    212             if ($disableTimeout) {
    213                 waitpid($pid, 0);   
    214             } else {
    215                 local $SIG{ALRM} = sub { die "alarm\n" };
    216                 alarm $timeout;
    217                 waitpid($pid, 0);
    218                 alarm 0;
    219             }
    220             $result = $?;
    221         };
    222         if ($@) {
    223             die unless $@ eq "alarm\n";
    224             kill SIGTERM, $pid or kill SIGKILL, $pid;
    225             $timedOut = 1;
    226         }
    227 
    228         my @testOutput = <$childOut>;
    229         @testOutput = grep { !/^LEAK:/ } @testOutput unless $showLeaks;
    230         map { s/\*\*PASS\*\*/possiblyColored("bold green", "PASS")/eg } @testOutput;
    231         map { s/\*\*FAIL\*\*/possiblyColored("bold red", "FAIL")/eg } @testOutput;
    232 
    233         if ($result) {
    234             push @testsFailed, $test;
    235             if (!$timedOut && index("@testOutput", $test) == -1) {
    236                 print STDOUT possiblyColored("bold red", "UNEXPECTEDLY EXITED"), " $test\n";
    237             }
    238         } elsif ($timedOut) {
    239             push @testsTimedOut, $test;
    240             print STDOUT possiblyColored("bold yellow", "TIMEOUT"), " $test\n";
    241         }
    242 
    243         print STDOUT @testOutput;
    244 
    245         close($childIn);
    246         close($childOut);
    247         close($childErr) unless ($verbose || $showLeaks);
    248         close(DEVNULL) unless ($verbose || $showLeaks);
    249 
    250         if ($timedOut || $result) {
    251             return $timedOut || $result;
    252         }
    253     }
     219            local $SIG{ALRM} = sub { die "alarm\n" };
     220            alarm $timeout;
     221            waitpid($pid, 0);
     222            alarm 0;
     223        }
     224        $result = $?;
     225    };
     226    if ($@) {
     227        die unless $@ eq "alarm\n";
     228        kill SIGTERM, $pid or kill SIGKILL, $pid;
     229        $timedOut = 1;
     230    }
     231
     232    my @testOutput = <$childOut>;
     233    @testOutput = grep { !/^LEAK:/ } @testOutput unless $showLeaks;
     234    map { s/\*\*PASS\*\*/possiblyColored("bold green", "PASS")/eg } @testOutput;
     235    map { s/\*\*FAIL\*\*/possiblyColored("bold red", "FAIL")/eg } @testOutput;
     236
     237    if ($result) {
     238        push @testsFailed, $test;
     239        if (!$timedOut && index("@testOutput", $test) == -1) {
     240            print STDOUT possiblyColored("bold red", "UNEXPECTEDLY EXITED"), " $test\n";
     241        }
     242    } elsif ($timedOut) {
     243        push @testsTimedOut, $test;
     244        print STDOUT possiblyColored("bold yellow", "TIMEOUT"), " $test\n";
     245    }
     246
     247    print STDOUT @testOutput;
     248
     249    close($childIn);
     250    close($childOut);
     251    close($childErr) unless ($verbose || $showLeaks);
     252    close(DEVNULL) unless ($verbose || $showLeaks);
     253
     254    if ($timedOut || $result) {
     255        return $timedOut || $result;
     256    }
     257
    254258    return 0;
    255259}
     
    274278
    275279    my @tests = ();
    276     foreach(testToolPaths()) {
     280    foreach (testToolPaths()) {
    277281        my $pid;
    278         my @commonArguments = ($_, "--gtest_list_tests");
     282        my $testTool = $_;
     283        my @commonArguments = ($testTool, "--gtest_list_tests");
    279284        if (isIOSWebKit()) {
    280285            $pid = open3($childIn, $childOut, $childErr, qw(xcrun --sdk iphonesimulator simctl spawn), $simulatorDevice->{UDID}, @commonArguments) or die "Failed to build list of tests!";
     
    289294        close($childOut);
    290295        close($childErr);
    291         close(DEVNULL) unless ($verbose);
    292296
    293297        waitpid($pid, 0);
     
    308312              next if (isAppleWinWebKit() && $suite =~ m/WebKit2*/);       
    309313              $line =~ s/^\s*//; # "TestName"
    310               push @tests, $suite . $line; # "SuiteName.TestName"
     314              my $fullName = $suite . $line; # "SuiteName.TestName";
     315              push @tests, $fullName;
     316              $testToToolMap{$fullName} = $testTool;
    311317            }
    312318        }
    313319    }
     320
     321    close(DEVNULL) unless ($verbose);
     322
    314323    return @tests;
    315324}
     
    337346
    338347    my @args = argumentsForConfiguration();
     348    if ($wtfOnly) {
     349        push @args, "--wtf-only";
     350    }
     351
    339352    my $pathToBuildTestTool = File::Spec->catfile("Tools", "Scripts", $buildTestTool);
    340353    my $buildProcess = open3($childIn, $childOut, $childErr, "perl", $pathToBuildTestTool, @args) or die "Failed to run " . $buildTestTool;
     
    389402sub testToolPaths()
    390403{
    391     my $path = File::Spec->catfile(productDir(), "TestWebKitAPI");
    392     return ($path) unless isAppleWinWebKit();
     404    if (!isAppleWinWebKit()) {
     405        my @toolPaths = ();
     406        if (!$wtfOnly) {
     407            push @toolPaths, File::Spec->catfile(productDir(), "TestWebKitAPI");
     408        }
     409        push @toolPaths, File::Spec->catfile(productDir(), "TestWTF");
     410        return @toolPaths;
     411    }
    393412
    394413    my $binDir = isWin64() ? "bin64" : "bin32";
  • trunk/Tools/TestWebKitAPI/Configurations/TestWebKitAPILibrary.xcconfig

    r177690 r201938  
    2424//
    2525
     26#include "FeatureDefines.xcconfig"
     27
    2628PRODUCT_NAME = TestWebKitAPI;
    2729SKIP_INSTALL = YES;
  • trunk/Tools/TestWebKitAPI/PlatformUtilities.h

    r199694 r201938  
    3131#include <WebKit/WKRetainPtr.h>
    3232#endif
     33
     34#include "Utilities.h"
    3335#include <string>
    3436
  • trunk/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj

    r201806 r201938  
    77        objects = {
    88
     9/* Begin PBXAggregateTarget section */
     10                7C83E02B1D0A5E1000FEBCF3 /* All */ = {
     11                        isa = PBXAggregateTarget;
     12                        buildConfigurationList = 7C83E02C1D0A5E1000FEBCF3 /* Build configuration list for PBXAggregateTarget "All" */;
     13                        buildPhases = (
     14                        );
     15                        dependencies = (
     16                                7C83E0301D0A5E1B00FEBCF3 /* PBXTargetDependency */,
     17                                7C83E0321D0A5E1D00FEBCF3 /* PBXTargetDependency */,
     18                        );
     19                        name = All;
     20                        productName = All;
     21                };
     22/* End PBXAggregateTarget section */
     23
    924/* Begin PBXBuildFile section */
    10                 0766DD201A5AD5200023E3BB /* PendingAPIRequestURL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0766DD1F1A5AD5200023E3BB /* PendingAPIRequestURL.cpp */; };
    1125                0F139E771A423A5B00F590F5 /* WeakObjCPtr.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F139E751A423A5300F590F5 /* WeakObjCPtr.mm */; };
    1226                0F139E781A423A6B00F590F5 /* PlatformUtilitiesCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F139E721A423A2B00F590F5 /* PlatformUtilitiesCocoa.mm */; };
    1327                0F139E791A42457000F590F5 /* PlatformUtilitiesCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F139E721A423A2B00F590F5 /* PlatformUtilitiesCocoa.mm */; };
    1428                0F3B94A71A77267400DE3272 /* WKWebViewEvaluateJavaScript.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F3B94A51A77266C00DE3272 /* WKWebViewEvaluateJavaScript.mm */; };
    15                 0FE447991B76F1EB009498EB /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FE447971B76F1E3009498EB /* ParkingLot.cpp */; };
    16                 0FEAE3691B7D19D200CE17F2 /* Condition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEAE3671B7D19CB00CE17F2 /* Condition.cpp */; };
    17                 0FFC45A61B73EBEB0085BD62 /* Lock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FFC45A41B73EBE20085BD62 /* Lock.cpp */; };
    1829                1A02C870125D4CFD00E3F4BD /* find.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 1A02C84B125D4A5E00E3F4BD /* find.html */; };
    19                 1A4F81CC1BDFFD37004E672E /* RemoteObjectRegistry.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A4F81C81BDFFD18004E672E /* RemoteObjectRegistry.mm */; };
    2030                1A4F81CF1BDFFD53004E672E /* RemoteObjectRegistryPlugIn.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A4F81CD1BDFFD53004E672E /* RemoteObjectRegistryPlugIn.mm */; };
    2131                1A50AA201A2A51FC00F4C345 /* close-from-within-create-page.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 1A50AA1F1A2A4EA500F4C345 /* close-from-within-create-page.html */; };
     
    2333                1A7E8B3618120B2F00AEB74A /* FragmentNavigation.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 1A7E8B351812093600AEB74A /* FragmentNavigation.html */; };
    2434                1A9E52C913E65EF4006917F5 /* 18-characters.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C045F9461385C2F800C0F3CD /* 18-characters.html */; };
    25                 1A9FB6CE1CA34BE500966124 /* EarlyKVOCrash.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A9FB6CC1CA34BE500966124 /* EarlyKVOCrash.mm */; };
    26                 1AAD19F71C7CE20300831E47 /* Coding.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1AAD19F51C7CE20300831E47 /* Coding.mm */; };
    2735                1ADBEFE3130C6AA100D61D19 /* simple-accelerated-compositing.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 1ADBEFBC130C6A0100D61D19 /* simple-accelerated-compositing.html */; };
    2836                1AEDE22613E5E7E700E62FE8 /* InjectedBundleControllerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1AEDE22413E5E7A000E62FE8 /* InjectedBundleControllerMac.mm */; };
     
    3139                1C2B81861C89259D00A5529F /* webfont.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 1C2B81841C8924A200A5529F /* webfont.html */; };
    3240                1C2B81871C8925A000A5529F /* Ahem.ttf in Copy Resources */ = {isa = PBXBuildFile; fileRef = 1C2B81851C89252300A5529F /* Ahem.ttf */; };
    33                 1CB9BC381A67482300FE5678 /* WeakPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CB9BC371A67482300FE5678 /* WeakPtr.cpp */; };
    34                 1CF0D3791BBF2F3D00B4EF54 /* WKRetainPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CF0D3781BBF2F3D00B4EF54 /* WKRetainPtr.cpp */; };
    35                 260BA5791B1D2E7B004FA07C /* DFACombiner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 260BA5781B1D2E7B004FA07C /* DFACombiner.cpp */; };
    3641                26DF5A6315A2A27E003689C2 /* CancelLoadFromResourceLoadDelegate.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 26DF5A6115A2A22B003689C2 /* CancelLoadFromResourceLoadDelegate.html */; };
    3742                26F52EAD1828827B0023D412 /* geolocationGetCurrentPosition.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 26F52EAC1828820E0023D412 /* geolocationGetCurrentPosition.html */; };
     
    3944                26F52EB218288F240023D412 /* geolocationWatchPosition.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 26F52EB018288F0F0023D412 /* geolocationWatchPosition.html */; };
    4045                26F52EB318288F240023D412 /* geolocationWatchPositionWithHighAccuracy.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 26F52EB118288F0F0023D412 /* geolocationWatchPositionWithHighAccuracy.html */; };
    41                 26F6E1F01ADC749B00DE696B /* DFAMinimizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26F6E1EF1ADC749B00DE696B /* DFAMinimizer.cpp */; };
    4246                290A9BB91735F63800D71BBC /* OpenNewWindow.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 290A9BB81735F42300D71BBC /* OpenNewWindow.html */; };
    4347                290F4275172A221C00939FF0 /* custom-protocol-sync-xhr.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 290F4274172A1FDE00939FF0 /* custom-protocol-sync-xhr.html */; };
    4448                297234B7173AFAC700983601 /* CustomProtocolsInvalidScheme_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 297234B5173AFAC700983601 /* CustomProtocolsInvalidScheme_Bundle.cpp */; };
    4549                2D00065F1C1F589A0088E6A7 /* WKPDFViewResizeCrash.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D00065D1C1F58940088E6A7 /* WKPDFViewResizeCrash.mm */; };
    46                 2D1FE0B01AD465C1006CD9E6 /* FixedLayoutSize.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D1FE0AF1AD465C1006CD9E6 /* FixedLayoutSize.mm */; };
    4750                2D51A0C71C8BF00C00765C45 /* DOMHTMLVideoElementWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D51A0C51C8BF00400765C45 /* DOMHTMLVideoElementWrapper.mm */; };
    48                 2D8104CC1BEC13E70020DA46 /* FindInPage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D8104CB1BEC13E70020DA46 /* FindInPage.mm */; };
    49                 2D9A53AF1B31FA8D0074D5AA /* ShrinkToFit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D9A53AE1B31FA8D0074D5AA /* ShrinkToFit.mm */; };
    50                 2DD355361BD08378005DF4A7 /* AutoLayoutIntegration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2DD355351BD08378005DF4A7 /* AutoLayoutIntegration.mm */; };
    5151                2DD7D3AF178227B30026E1E3 /* lots-of-text-vertical-lr.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 2DD7D3AE178227AC0026E1E3 /* lots-of-text-vertical-lr.html */; };
    5252                2E7765CD16C4D80A00BA2BB1 /* mainIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E7765CC16C4D80A00BA2BB1 /* mainIOS.mm */; };
     
    6363                37DC6791140D7D7600ABCCDB /* DOMRangeOfString.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 37DC678F140D7D3A00ABCCDB /* DOMRangeOfString.html */; };
    6464                37E1064C1697681800B78BD0 /* DOMHTMLTableCellElementCellAbove.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 37E1064B169767F700B78BD0 /* DOMHTMLTableCellElementCellAbove.html */; };
    65                 41973B5B1AF2286A006C7B36 /* FileSystem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41973B5A1AF2286A006C7B36 /* FileSystem.cpp */; };
    66                 41973B5D1AF22875006C7B36 /* SharedBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41973B5C1AF22875006C7B36 /* SharedBuffer.cpp */; };
    67                 442BBF6A1C91CB1B0017087F /* RefLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 442BBF681C91CAD90017087F /* RefLogger.cpp */; };
    6865                4BFDFFA71314776C0061F24B /* HitTestResultNodeHandle_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BFDFFA61314776C0061F24B /* HitTestResultNodeHandle_Bundle.cpp */; };
    6966                51393E221523952D005F39C5 /* DOMWindowExtensionBasic_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51393E1D1523944A005F39C5 /* DOMWindowExtensionBasic_Bundle.cpp */; };
     
    7269                51714EB51CF8C78C004723C4 /* WebProcessKillIDBCleanup-2.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 51714EB31CF8C761004723C4 /* WebProcessKillIDBCleanup-2.html */; };
    7370                51714EB81CF8CA17004723C4 /* WebProcessKillIDBCleanup.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51714EB61CF8C7A4004723C4 /* WebProcessKillIDBCleanup.mm */; };
    74                 51714EBA1D087416004723C4 /* CrossThreadTask.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51714EB91D087416004723C4 /* CrossThreadTask.cpp */; };
    7571                517E7E04151119C100D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 517E7E031511187500D0B008 /* MemoryCachePruneWithinResourceLoadDelegate.html */; };
    76                 51B1EE8E1C80F5880064FB98 /* IndexedDBPersistence.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51B1EE8D1C80F5880064FB98 /* IndexedDBPersistence.mm */; };
    7772                51B1EE961C80FAEF0064FB98 /* IndexedDBPersistence-1.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 51B1EE941C80FADD0064FB98 /* IndexedDBPersistence-1.html */; };
    7873                51B1EE971C80FAEF0064FB98 /* IndexedDBPersistence-2.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 51B1EE951C80FADD0064FB98 /* IndexedDBPersistence-2.html */; };
    79                 51B454EC1B4E236B0085EAA6 /* WebViewCloseInsideDidFinishLoadForFrame.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51B454EB1B4E236B0085EAA6 /* WebViewCloseInsideDidFinishLoadForFrame.mm */; };
    80                 51BCEE4A1C84F4AF0042C82E /* IndexedDBMultiProcess.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51BCEE491C84F4AF0042C82E /* IndexedDBMultiProcess.mm */; };
    8174                51BCEE4E1C84F53B0042C82E /* IndexedDBMultiProcess-1.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 51BCEE4C1C84F52C0042C82E /* IndexedDBMultiProcess-1.html */; };
    8275                51BCEE4F1C84F53B0042C82E /* IndexedDBMultiProcess-2.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 51BCEE4D1C84F52C0042C82E /* IndexedDBMultiProcess-2.html */; };
    83                 51CB4AD81B3A079C00C1B1C6 /* ModalAlertsSPI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51CB4AD71B3A079C00C1B1C6 /* ModalAlertsSPI.cpp */; };
    8476                51CD1C6C1B38CE4300142CA5 /* ModalAlerts.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51CD1C6A1B38CE3600142CA5 /* ModalAlerts.mm */; };
    8577                51CD1C721B38D48400142CA5 /* modal-alerts-in-new-about-blank-window.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 51CD1C711B38D48400142CA5 /* modal-alerts-in-new-about-blank-window.html */; };
     
    9890                5714ECBB1CA8BFE400051AC8 /* DownloadRequestOriginalURLFrame.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 5714ECBA1CA8BFD100051AC8 /* DownloadRequestOriginalURLFrame.html */; };
    9991                5714ECBD1CA8C22A00051AC8 /* DownloadRequestOriginalURL2.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 5714ECBC1CA8C21800051AC8 /* DownloadRequestOriginalURL2.html */; };
    100                 57901FAD1CAF12C200ED64F9 /* LoadInvalidURLRequest.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57901FAC1CAF12C200ED64F9 /* LoadInvalidURLRequest.mm */; };
    101                 57901FAF1CAF137100ED64F9 /* LoadInvalidURLRequest.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57901FAE1CAF137100ED64F9 /* LoadInvalidURLRequest.mm */; };
    10292                57901FB11CAF142D00ED64F9 /* LoadInvalidURLRequest.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 57901FB01CAF141C00ED64F9 /* LoadInvalidURLRequest.html */; };
    103                 5798E2B01CAF5C2800C5CBA0 /* ProvisionalURLNotChange.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5798E2AF1CAF5C2800C5CBA0 /* ProvisionalURLNotChange.mm */; };
    104                 57F10D931C7E7B3800ECDF30 /* IsNavigationActionTrusted.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57F10D921C7E7B3800ECDF30 /* IsNavigationActionTrusted.mm */; };
    10593                57F56A5C1C7F8CC100F31D7E /* IsNavigationActionTrusted.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 57F56A5B1C7F8A4000F31D7E /* IsNavigationActionTrusted.html */; };
    10694                764322D71B61CCC30024F801 /* WordBoundaryTypingAttributes.mm in Sources */ = {isa = PBXBuildFile; fileRef = 764322D51B61CCA40024F801 /* WordBoundaryTypingAttributes.mm */; };
     
    10997                76E182DF154767E600F1FADD /* auto-submitting-form.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 76E182DE15475A8300F1FADD /* auto-submitting-form.html */; };
    11098                7A1458FC1AD5C07000E06772 /* mouse-button-listener.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 7A1458FB1AD5C03500E06772 /* mouse-button-listener.html */; };
    111                 7A38D7E61C752D5F004F157D /* HashCountedSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A38D7E51C752D5F004F157D /* HashCountedSet.cpp */; };
    112                 7A5623111AD5AF3E0096B920 /* MenuTypesForMouseEvents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A5623101AD5AF3E0096B920 /* MenuTypesForMouseEvents.cpp */; };
    113                 7A99D9941AD4A29D00373141 /* MenuTypesForMouseEvents.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7A99D9931AD4A29D00373141 /* MenuTypesForMouseEvents.mm */; };
    114                 7AA021BB1AB09EA70052953F /* DateMath.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7AA021BA1AB09EA70052953F /* DateMath.cpp */; };
    115                 7AA6A1521AAC0B31002B2ED3 /* WorkQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7AA6A1511AAC0B31002B2ED3 /* WorkQueue.cpp */; };
    11699                7AE9E5091AE5AE8B00CF874B /* test.pdf in Copy Resources */ = {isa = PBXBuildFile; fileRef = 7AE9E5081AE5AE8B00CF874B /* test.pdf */; };
    117100                7C3965061CDD74F90094DBB8 /* Color.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C3965051CDD74F90094DBB8 /* Color.cpp */; };
     
    119102                7C54A4BE1AA11CCA00380F78 /* WKBundleFileHandle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C54A4BC1AA11CCA00380F78 /* WKBundleFileHandle.cpp */; };
    120103                7C54A4C11AA11CE400380F78 /* WKBundleFileHandle_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C54A4BF1AA11CE400380F78 /* WKBundleFileHandle_Bundle.cpp */; };
     104                7C83DE991D0A590C00FEBCF3 /* AtomicString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26F1B44215CA434F00D1E4BF /* AtomicString.cpp */; };
     105                7C83DE9C1D0A590C00FEBCF3 /* BloomFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E40019301ACE9B5C001B0A2A /* BloomFilter.cpp */; };
     106                7C83DEA01D0A590C00FEBCF3 /* CheckedArithmeticOperations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A7A966DA140ECCC8005EF9B4 /* CheckedArithmeticOperations.cpp */; };
     107                7C83DEA61D0A590C00FEBCF3 /* Counters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C6BBD8B19CEA63000C1F5E0 /* Counters.cpp */; };
     108                7C83DEA91D0A590C00FEBCF3 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26A2C72E15E2E73C005B1A14 /* CString.cpp */; };
     109                7C83DEAD1D0A590C00FEBCF3 /* Deque.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4A757D3178AEA5B00B5D7A4 /* Deque.cpp */; };
     110                7C83DEC31D0A590C00FEBCF3 /* Condition.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEAE3671B7D19CB00CE17F2 /* Condition.cpp */; };
     111                7C83DED21D0A590C00FEBCF3 /* HashMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCD833414857CE400EA2003 /* HashMap.cpp */; };
     112                7C83DED41D0A590C00FEBCF3 /* HashSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26B2DFF815BDE599004F691D /* HashSet.cpp */; };
     113                7C83DED71D0A590C00FEBCF3 /* RefLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 442BBF681C91CAD90017087F /* RefLogger.cpp */; };
     114                7C83DEE01D0A590C00FEBCF3 /* IntegerToStringConversion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 266FAFD215E5775200F61D5B /* IntegerToStringConversion.cpp */; };
     115                7C83DEE81D0A590C00FEBCF3 /* ListHashSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26300B1716755CD90066886D /* ListHashSet.cpp */; };
     116                7C83DEED1D0A590C00FEBCF3 /* MathExtras.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4039F9C15E6D8B3007255D6 /* MathExtras.cpp */; };
     117                7C83DEEF1D0A590C00FEBCF3 /* MD5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5393C71757BA9700C07123 /* MD5.cpp */; };
     118                7C83DEF11D0A590C00FEBCF3 /* MediaTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5497B315857F0C00B5BC30 /* MediaTime.cpp */; };
     119                7C83DEF61D0A590C00FEBCF3 /* MetaAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FC6C4CE141034AD005B7F0C /* MetaAllocator.cpp */; };
     120                7C83DEFE1D0A590C00FEBCF3 /* NakedPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FEB6F74E1B2BA44E009E4922 /* NakedPtr.cpp */; };
     121                7C83DF011D0A590C00FEBCF3 /* Optional.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AFDE6541953B2C000C48FFA /* Optional.cpp */; };
     122                7C83DF021D0A590C00FEBCF3 /* OSObjectPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CBBA07619BB8A9100BBF025 /* OSObjectPtr.cpp */; };
     123                7C83DF051D0A590C00FEBCF3 /* RunLoop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4C9ABC71B3DB1710040A987 /* RunLoop.cpp */; };
     124                7C83DF121D0A590C00FEBCF3 /* ScopedLambda.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC69AA621CF77C6500C6272F /* ScopedLambda.cpp */; settings = {COMPILER_FLAGS = "-fno-elide-constructors"; }; };
     125                7C83DF131D0A590C00FEBCF3 /* RedBlackTree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FC6C4CB141027E0005B7F0C /* RedBlackTree.cpp */; };
     126                7C83DF141D0A590C00FEBCF3 /* Ref.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93A427AA180DA26400CD24D7 /* Ref.cpp */; };
     127                7C83DF151D0A590C00FEBCF3 /* RefCounter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86BD19971A2DB05B006DCF0A /* RefCounter.cpp */; };
     128                7C83DF161D0A590C00FEBCF3 /* RefPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93A427A8180D9B0700CD24D7 /* RefPtr.cpp */; };
     129                7C83DF1D1D0A590C00FEBCF3 /* Lock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FFC45A41B73EBE20085BD62 /* Lock.cpp */; };
     130                7C83DF241D0A590C00FEBCF3 /* RetainPtr.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC029B1B1486B25900817DA9 /* RetainPtr.mm */; };
     131                7C83DF261D0A590C00FEBCF3 /* SaturatedArithmeticOperations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14F3B11215E45EAB00210069 /* SaturatedArithmeticOperations.cpp */; };
     132                7C83DF2A1D0A590C00FEBCF3 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5393C91757BAC400C07123 /* SHA1.cpp */; };
     133                7C83DF321D0A590C00FEBCF3 /* StringBuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B50192140F232300D9EB58 /* StringBuilder.cpp */; };
     134                7C83DF361D0A590C00FEBCF3 /* StringHasher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93ABA80816DDAB91002DB2FA /* StringHasher.cpp */; };
     135                7C83DF371D0A590C00FEBCF3 /* StringImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26F1B44315CA434F00D1E4BF /* StringImpl.cpp */; };
     136                7C83DF381D0A590C00FEBCF3 /* StringOperators.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C01363C713C3997300EF3964 /* StringOperators.cpp */; };
     137                7C83DF3A1D0A590C00FEBCF3 /* StringView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C74D42D188228F300E5ED57 /* StringView.cpp */; };
     138                7C83DF3D1D0A590C00FEBCF3 /* TemporaryChange.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCD85691485C98B00EA2003 /* TemporaryChange.cpp */; };
     139                7C83DF401D0A590C00FEBCF3 /* TestsController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC131AA8117131FC00B69727 /* TestsController.cpp */; };
     140                7C83DF4C1D0A590C00FEBCF3 /* Vector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC55F5F814AD78EE00484BE1 /* Vector.cpp */; };
     141                7C83DF591D0A590C00FEBCF3 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FE447971B76F1E3009498EB /* ParkingLot.cpp */; };
     142                7C83DF631D0A590C00FEBCF3 /* WTFString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 265AF54F15D1E48A00B0CB4A /* WTFString.cpp */; };
     143                7C83DFA21D0A5AE400FEBCF3 /* mainIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E7765CC16C4D80A00BA2BB1 /* mainIOS.mm */; };
     144                7C83DFAD1D0A5AE400FEBCF3 /* mainMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2E7765CE16C4D81100BA2BB1 /* mainMac.mm */; };
     145                7C83E02A1D0A5CDF00FEBCF3 /* libWTF.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C83E0291D0A5CDF00FEBCF3 /* libWTF.a */; };
     146                7C83E03A1D0A602700FEBCF3 /* UtilitiesCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C83E0391D0A602700FEBCF3 /* UtilitiesCocoa.mm */; };
     147                7C83E03B1D0A602700FEBCF3 /* UtilitiesCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C83E0391D0A602700FEBCF3 /* UtilitiesCocoa.mm */; };
     148                7C83E03C1D0A60D600FEBCF3 /* UtilitiesCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C83E0391D0A602700FEBCF3 /* UtilitiesCocoa.mm */; };
     149                7C83E03D1D0A60D600FEBCF3 /* UtilitiesCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C83E0391D0A602700FEBCF3 /* UtilitiesCocoa.mm */; };
     150                7C83E03F1D0A61A000FEBCF3 /* libicucore.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C83E0331D0A5F2700FEBCF3 /* libicucore.dylib */; };
     151                7C83E0401D0A63E300FEBCF3 /* FirstResponderScrollingPosition.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B79164F1BD89D0D00D50B8F /* FirstResponderScrollingPosition.mm */; };
     152                7C83E0411D0A63F200FEBCF3 /* ViewWithEditableAreaLeak.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93CFA8681CEBCFED000565A8 /* ViewWithEditableAreaLeak.mm */; };
     153                7C83E0421D0A63FD00FEBCF3 /* WebViewCloseInsideDidFinishLoadForFrame.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51B454EB1B4E236B0085EAA6 /* WebViewCloseInsideDidFinishLoadForFrame.mm */; };
     154                7C83E04C1D0A641800FEBCF3 /* WebCoreNSURLSession.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD89D0381C4EDB2A00040A04 /* WebCoreNSURLSession.mm */; };
     155                7C83E04D1D0A641800FEBCF3 /* DFACombiner.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 260BA5781B1D2E7B004FA07C /* DFACombiner.cpp */; };
     156                7C83E04E1D0A641800FEBCF3 /* DFAMinimizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26F6E1EF1ADC749B00DE696B /* DFAMinimizer.cpp */; };
     157                7C83E04F1D0A641800FEBCF3 /* FileSystem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41973B5A1AF2286A006C7B36 /* FileSystem.cpp */; };
     158                7C83E0501D0A641800FEBCF3 /* HTMLParserIdioms.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83B88A331C80056D00BB2418 /* HTMLParserIdioms.cpp */; };
     159                7C83E0511D0A641800FEBCF3 /* ParsedContentRange.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD225C071C45A69200140761 /* ParsedContentRange.cpp */; };
     160                7C83E0521D0A641800FEBCF3 /* SharedBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41973B5C1AF22875006C7B36 /* SharedBuffer.cpp */; };
     161                7C83E0531D0A643A00FEBCF3 /* PendingAPIRequestURL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0766DD1F1A5AD5200023E3BB /* PendingAPIRequestURL.cpp */; };
     162                7C83E0B51D0A649300FEBCF3 /* WKRetainPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CF0D3781BBF2F3D00B4EF54 /* WKRetainPtr.cpp */; };
     163                7C83E0B61D0A64B300FEBCF3 /* ModalAlertsSPI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51CB4AD71B3A079C00C1B1C6 /* ModalAlertsSPI.cpp */; };
     164                7C83E0B71D0A64B800FEBCF3 /* MenuTypesForMouseEvents.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A5623101AD5AF3E0096B920 /* MenuTypesForMouseEvents.cpp */; };
     165                7C83E0B81D0A64BD00FEBCF3 /* InjectedBundleMakeAllShadowRootsOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B0786A21C58830F00D159E3 /* InjectedBundleMakeAllShadowRootsOpen.cpp */; };
     166                7C83E0B91D0A64F100FEBCF3 /* AutoLayoutIntegration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2DD355351BD08378005DF4A7 /* AutoLayoutIntegration.mm */; };
     167                7C83E0BA1D0A64FB00FEBCF3 /* Coding.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1AAD19F51C7CE20300831E47 /* Coding.mm */; };
     168                7C83E0BB1D0A650000FEBCF3 /* FindInPage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D8104CB1BEC13E70020DA46 /* FindInPage.mm */; };
     169                7C83E0BC1D0A650700FEBCF3 /* FixedLayoutSize.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D1FE0AF1AD465C1006CD9E6 /* FixedLayoutSize.mm */; };
     170                7C83E0BD1D0A650C00FEBCF3 /* FullscreenTopContentInset.mm in Sources */ = {isa = PBXBuildFile; fileRef = CDE195B31CFE0ADE0053D256 /* FullscreenTopContentInset.mm */; };
     171                7C83E0BE1D0A651300FEBCF3 /* IndexedDBMultiProcess.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51BCEE491C84F4AF0042C82E /* IndexedDBMultiProcess.mm */; };
     172                7C83E0BF1D0A652200FEBCF3 /* IndexedDBPersistence.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51B1EE8D1C80F5880064FB98 /* IndexedDBPersistence.mm */; };
     173                7C83E0C01D0A652700FEBCF3 /* LoadInvalidURLRequest.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57901FAC1CAF12C200ED64F9 /* LoadInvalidURLRequest.mm */; };
     174                7C83E0C11D0A652F00FEBCF3 /* ProvisionalURLNotChange.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5798E2AF1CAF5C2800C5CBA0 /* ProvisionalURLNotChange.mm */; };
     175                7C83E0C21D0A653500FEBCF3 /* QuickLook.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1C4FB6C1BACCE50003742D0 /* QuickLook.mm */; };
     176                7C83E0C31D0A653A00FEBCF3 /* RemoteObjectRegistry.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A4F81C81BDFFD18004E672E /* RemoteObjectRegistry.mm */; };
     177                7C83E0C41D0A654200FEBCF3 /* RequiresUserActionForPlayback.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD9E292B1C90A71F000BB800 /* RequiresUserActionForPlayback.mm */; };
     178                7C83E0C51D0A654600FEBCF3 /* ShrinkToFit.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D9A53AE1B31FA8D0074D5AA /* ShrinkToFit.mm */; };
     179                7C83E0C61D0A654E00FEBCF3 /* VideoControlsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93E943F11CD3E87E00AC08C2 /* VideoControlsManager.mm */; };
    121180                7C882E091C80C630006BF731 /* UserContentWorldPlugIn.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C882E041C80C624006BF731 /* UserContentWorldPlugIn.mm */; };
    122181                7C882E0A1C80C764006BF731 /* UserContentWorld.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C882E031C80C624006BF731 /* UserContentWorld.mm */; };
     
    261320                7CCE7F2E1A411B1000447C4C /* WKBrowsingContextGroupTest.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC3C4C7D14587AA60025FB62 /* WKBrowsingContextGroupTest.mm */; };
    262321                7CCE7F2F1A411B1000447C4C /* WKBrowsingContextLoadDelegateTest.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC3C4C7014575B6A0025FB62 /* WKBrowsingContextLoadDelegateTest.mm */; };
    263                 7CCE7F301A411B8E00447C4C /* AtomicString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26F1B44215CA434F00D1E4BF /* AtomicString.cpp */; };
    264                 7CCE7F311A411B8E00447C4C /* CheckedArithmeticOperations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A7A966DA140ECCC8005EF9B4 /* CheckedArithmeticOperations.cpp */; };
    265                 7CCE7F321A411B8E00447C4C /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26A2C72E15E2E73C005B1A14 /* CString.cpp */; };
    266                 7CCE7F331A411B8E00447C4C /* Deque.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4A757D3178AEA5B00B5D7A4 /* Deque.cpp */; };
    267                 7CCE7F351A411B8E00447C4C /* HashMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCD833414857CE400EA2003 /* HashMap.cpp */; };
    268                 7CCE7F361A411B8E00447C4C /* HashSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26B2DFF815BDE599004F691D /* HashSet.cpp */; };
    269                 7CCE7F371A411B8E00447C4C /* IntegerToStringConversion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 266FAFD215E5775200F61D5B /* IntegerToStringConversion.cpp */; };
    270                 7CCE7F381A411B8E00447C4C /* ListHashSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26300B1716755CD90066886D /* ListHashSet.cpp */; };
    271                 7CCE7F391A411B8E00447C4C /* MD5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5393C71757BA9700C07123 /* MD5.cpp */; };
    272                 7CCE7F3A1A411B8E00447C4C /* MathExtras.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4039F9C15E6D8B3007255D6 /* MathExtras.cpp */; };
    273                 7CCE7F3B1A411B8E00447C4C /* MediaTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5497B315857F0C00B5BC30 /* MediaTime.cpp */; };
    274                 7CCE7F3C1A411B8E00447C4C /* MetaAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FC6C4CE141034AD005B7F0C /* MetaAllocator.cpp */; };
    275                 7CCE7F3D1A411B8E00447C4C /* Optional.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AFDE6541953B2C000C48FFA /* Optional.cpp */; };
    276                 7CCE7F3E1A411B8E00447C4C /* RedBlackTree.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FC6C4CB141027E0005B7F0C /* RedBlackTree.cpp */; };
    277                 7CCE7F3F1A411B8E00447C4C /* Ref.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93A427AA180DA26400CD24D7 /* Ref.cpp */; };
    278                 7CCE7F401A411B8E00447C4C /* RefCounter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86BD19971A2DB05B006DCF0A /* RefCounter.cpp */; };
    279                 7CCE7F411A411B8E00447C4C /* RefPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93A427A8180D9B0700CD24D7 /* RefPtr.cpp */; };
    280                 7CCE7F421A411B8E00447C4C /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5393C91757BAC400C07123 /* SHA1.cpp */; };
    281                 7CCE7F431A411B8E00447C4C /* SaturatedArithmeticOperations.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14F3B11215E45EAB00210069 /* SaturatedArithmeticOperations.cpp */; };
    282                 7CCE7F441A411B8E00447C4C /* StringBuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81B50192140F232300D9EB58 /* StringBuilder.cpp */; };
    283                 7CCE7F451A411B8E00447C4C /* StringHasher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93ABA80816DDAB91002DB2FA /* StringHasher.cpp */; };
    284                 7CCE7F461A411B8E00447C4C /* StringImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26F1B44315CA434F00D1E4BF /* StringImpl.cpp */; };
    285                 7CCE7F471A411B8E00447C4C /* StringOperators.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C01363C713C3997300EF3964 /* StringOperators.cpp */; };
    286                 7CCE7F481A411B8E00447C4C /* StringView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C74D42D188228F300E5ED57 /* StringView.cpp */; };
    287                 7CCE7F491A411B8E00447C4C /* TemporaryChange.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCD85691485C98B00EA2003 /* TemporaryChange.cpp */; };
    288                 7CCE7F4A1A411B8E00447C4C /* Vector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC55F5F814AD78EE00484BE1 /* Vector.cpp */; };
    289                 7CCE7F4B1A411B8E00447C4C /* WTFString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 265AF54F15D1E48A00B0CB4A /* WTFString.cpp */; };
    290                 7CCE7F4C1A411B9800447C4C /* OSObjectPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CBBA07619BB8A9100BBF025 /* OSObjectPtr.cpp */; };
    291                 7CCE7F4D1A411B9F00447C4C /* RetainPtr.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC029B1B1486B25900817DA9 /* RetainPtr.mm */; };
    292                 7CCE7F4E1A411BA400447C4C /* RetainPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC029B161486AD6400817DA9 /* RetainPtr.cpp */; };
    293                 7CCE7F4F1A411BA400447C4C /* RetainPtrHashing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0991C50143C7D68007998F2 /* RetainPtrHashing.cpp */; };
    294322                7CEFA9661AC0B9E200B910FD /* _WKUserContentExtensionStore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CEFA9641AC0B9E200B910FD /* _WKUserContentExtensionStore.mm */; };
    295323                7CFBCAE51743238F00B2BFCF /* WillLoad_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CFBCAE31743238E00B2BFCF /* WillLoad_Bundle.cpp */; };
    296                 83B88A341C80056D00BB2418 /* HTMLParserIdioms.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83B88A331C80056D00BB2418 /* HTMLParserIdioms.cpp */; };
    297324                83CF1C301C4F1B8B00688447 /* StringUtilities.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83CF1C2C1C4F19AE00688447 /* StringUtilities.mm */; };
    298325                930AD402150698D00067970F /* lots-of-text.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 930AD401150698B30067970F /* lots-of-text.html */; };
     
    304331                93AF4ED11506F130007FD57E /* lots-of-images.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 93AF4ECF1506F123007FD57E /* lots-of-images.html */; };
    305332                93CFA8671CEB9E38000565A8 /* autofocused-text-input.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 93CFA8661CEB9DE1000565A8 /* autofocused-text-input.html */; };
    306                 93CFA8691CEBCFED000565A8 /* ViewWithEditableAreaLeak.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93CFA8681CEBCFED000565A8 /* ViewWithEditableAreaLeak.mm */; };
    307                 93E943F21CD3E87E00AC08C2 /* VideoControlsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93E943F11CD3E87E00AC08C2 /* VideoControlsManager.mm */; };
    308333                93F1DB3414DA20870024C362 /* NewFirstVisuallyNonEmptyLayout_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93F1DB3314DA20870024C362 /* NewFirstVisuallyNonEmptyLayout_Bundle.cpp */; };
    309334                93F1DB5714DB1B840024C362 /* NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93F1DB5614DB1B840024C362 /* NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp */; };
     
    311336                9984FACC1CFFAF60008D198C /* WKWebViewTextInput.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9984FACA1CFFAEEE008D198C /* WKWebViewTextInput.mm */; };
    312337                9984FACE1CFFB090008D198C /* editable-body.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 9984FACD1CFFB038008D198C /* editable-body.html */; };
    313                 9B0786A31C58830F00D159E3 /* InjectedBundleMakeAllShadowRootsOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B0786A21C58830F00D159E3 /* InjectedBundleMakeAllShadowRootsOpen.cpp */; };
    314338                9B0786A51C5885C300D159E3 /* InjectedBundleMakeAllShadowRootOpen_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B0786A41C5885C300D159E3 /* InjectedBundleMakeAllShadowRootOpen_Bundle.cpp */; };
    315339                9B26FCCA159D16DE00CC3765 /* HTMLFormCollectionNamedItem.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 9B26FCB4159D15E700CC3765 /* HTMLFormCollectionNamedItem.html */; };
    316340                9B4F8FA7159D52DD002D9F94 /* HTMLCollectionNamedItem.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 9B4F8FA6159D52CA002D9F94 /* HTMLCollectionNamedItem.html */; };
    317                 9B7916501BD89D0D00D50B8F /* FirstResponderScrollingPosition.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B79164F1BD89D0D00D50B8F /* FirstResponderScrollingPosition.mm */; };
    318341                A13EBBAA1B87428D00097110 /* WebProcessPlugIn.mm in Sources */ = {isa = PBXBuildFile; fileRef = A13EBBA91B87428D00097110 /* WebProcessPlugIn.mm */; };
    319342                A13EBBAB1B87434600097110 /* PlatformUtilitiesCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F139E721A423A2B00F590F5 /* PlatformUtilitiesCocoa.mm */; };
     
    325348                A14FC5901B8AE36F00D107EB /* TestProtocol.mm in Sources */ = {isa = PBXBuildFile; fileRef = A14FC58E1B8AE36500D107EB /* TestProtocol.mm */; };
    326349                A16F66BA1C40EB4F00BD4D24 /* ContentFiltering.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = A16F66B91C40EA2000BD4D24 /* ContentFiltering.html */; };
    327                 A1C4FB6E1BACCE50003742D0 /* QuickLook.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1C4FB6C1BACCE50003742D0 /* QuickLook.mm */; };
    328350                A1C4FB731BACD1CA003742D0 /* pages.pages in Copy Resources */ = {isa = PBXBuildFile; fileRef = A1C4FB721BACD1B7003742D0 /* pages.pages */; };
    329351                A1DF74321C41B65800A2F4D0 /* AlwaysRevalidatedURLSchemes.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1DF74301C41B65800A2F4D0 /* AlwaysRevalidatedURLSchemes.mm */; };
     
    356378                C54237F116B8957D00E638FC /* PasteboardNotifications_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C54237ED16B8955800E638FC /* PasteboardNotifications_Bundle.cpp */; };
    357379                C5E1AFFE16B221F1006CC1F2 /* execCopy.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = C5E1AFFD16B22179006CC1F2 /* execCopy.html */; };
    358                 CD225C081C45A69200140761 /* ParsedContentRange.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD225C071C45A69200140761 /* ParsedContentRange.cpp */; };
    359380                CD59F53419E9110D00CF1835 /* file-with-mse.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = CD59F53219E910AA00CF1835 /* file-with-mse.html */; };
    360381                CD59F53519E9110D00CF1835 /* test-mse.mp4 in Copy Resources */ = {isa = PBXBuildFile; fileRef = CD59F53319E910BC00CF1835 /* test-mse.mp4 */; };
    361                 CD89D03A1C4EDB2A00040A04 /* WebCoreNSURLSession.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD89D0381C4EDB2A00040A04 /* WebCoreNSURLSession.mm */; };
    362                 CD9E292C1C90A71F000BB800 /* RequiresUserActionForPlayback.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD9E292B1C90A71F000BB800 /* RequiresUserActionForPlayback.mm */; };
    363382                CD9E292E1C90C33F000BB800 /* audio-only.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = CD9E292D1C90C1BA000BB800 /* audio-only.html */; };
    364383                CDBFCC451A9FF45300A7B691 /* FullscreenZoomInitialFrame.mm in Sources */ = {isa = PBXBuildFile; fileRef = CDBFCC431A9FF44800A7B691 /* FullscreenZoomInitialFrame.mm */; };
     
    369388                CDC8E4961BC6F10800594FEC /* video-without-audio.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = CDC8E48B1BC5C96200594FEC /* video-without-audio.html */; };
    370389                CDC8E4971BC6F10800594FEC /* video-without-audio.mp4 in Copy Resources */ = {isa = PBXBuildFile; fileRef = CDC8E48C1BC5C96200594FEC /* video-without-audio.mp4 */; };
    371                 CDE195B41CFE0ADE0053D256 /* FullscreenTopContentInset.mm in Sources */ = {isa = PBXBuildFile; fileRef = CDE195B31CFE0ADE0053D256 /* FullscreenTopContentInset.mm */; };
    372390                CDE195B51CFE0B880053D256 /* FullscreenTopContentInset.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = CDE195B21CFE0ADE0053D256 /* FullscreenTopContentInset.html */; };
    373391                CE14F1A4181873B0001C2705 /* WillPerformClientRedirectToURLCrash.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = CE14F1A2181873B0001C2705 /* WillPerformClientRedirectToURLCrash.html */; };
     
    375393                CE3524F91B1441C40028A7C5 /* TextFieldDidBeginAndEndEditing.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE3524F11B142B8D0028A7C5 /* TextFieldDidBeginAndEndEditing.cpp */; };
    376394                CE3524FA1B1443890028A7C5 /* input-focus-blur.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = CE3524F51B142BBB0028A7C5 /* input-focus-blur.html */; };
    377                 CE50D8CA1C8665CE0072EA5A /* OptionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE50D8C81C8665CE0072EA5A /* OptionSet.cpp */; };
    378395                CEA6CF2819CCF69D0064F5A7 /* open-and-close-window.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = CEA6CF2719CCF69D0064F5A7 /* open-and-close-window.html */; };
    379396                CEBABD491B71687C0051210A /* should-open-external-schemes.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = CEBABD481B71687C0051210A /* should-open-external-schemes.html */; };
    380                 DC69AA641CF77C7D00C6272F /* ScopedLambda.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC69AA621CF77C6500C6272F /* ScopedLambda.cpp */; settings = {COMPILER_FLAGS = "-fno-elide-constructors"; }; };
    381397                E1220DCA155B28AA0013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = E1220DC9155B287D0013E2FC /* MemoryCacheDisableWithinResourceLoadDelegate.html */; };
    382398                E194E1BD177E53C7009C4D4E /* StopLoadingFromDidReceiveResponse.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = E194E1BC177E534A009C4D4E /* StopLoadingFromDidReceiveResponse.html */; };
    383                 E19DB9791B32137C00DB38D4 /* NavigatorLanguage.mm in Sources */ = {isa = PBXBuildFile; fileRef = E19DB9781B32137C00DB38D4 /* NavigatorLanguage.mm */; };
    384                 E40019331ACE9B88001B0A2A /* BloomFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E40019301ACE9B5C001B0A2A /* BloomFilter.cpp */; };
    385                 E4C9ABC91B3DB2C40040A987 /* RunLoop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4C9ABC71B3DB1710040A987 /* RunLoop.cpp */; };
    386399                F660AA1115A5F631003A1243 /* GetInjectedBundleInitializationUserDataCallback_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F660AA0F15A5F624003A1243 /* GetInjectedBundleInitializationUserDataCallback_Bundle.cpp */; };
    387400                F660AA1515A61ABF003A1243 /* InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F660AA1415A61ABF003A1243 /* InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp */; };
     
    390403                F6F49C6B15545CA70007F39D /* DOMWindowExtensionNoCache_Bundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6F49C6615545C8D0007F39D /* DOMWindowExtensionNoCache_Bundle.cpp */; };
    391404                F6FDDDD614241C6F004F1729 /* push-state.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = F6FDDDD514241C48004F1729 /* push-state.html */; };
    392                 FEB6F7511B2BA464009E4922 /* NakedPtr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FEB6F74E1B2BA44E009E4922 /* NakedPtr.cpp */; };
    393405/* End PBXBuildFile section */
    394406
    395407/* Begin PBXContainerItemProxy section */
     408                7C83E0241D0A5B2500FEBCF3 /* PBXContainerItemProxy */ = {
     409                        isa = PBXContainerItemProxy;
     410                        containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
     411                        proxyType = 1;
     412                        remoteGlobalIDString = 7C83DE951D0A590C00FEBCF3;
     413                        remoteInfo = TestWTFLibrary;
     414                };
     415                7C83E02F1D0A5E1B00FEBCF3 /* PBXContainerItemProxy */ = {
     416                        isa = PBXContainerItemProxy;
     417                        containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
     418                        proxyType = 1;
     419                        remoteGlobalIDString = 8DD76F960486AA7600D96B5E;
     420                        remoteInfo = TestWebKitAPI;
     421                };
     422                7C83E0311D0A5E1D00FEBCF3 /* PBXContainerItemProxy */ = {
     423                        isa = PBXContainerItemProxy;
     424                        containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
     425                        proxyType = 1;
     426                        remoteGlobalIDString = 7C83DF951D0A5AE400FEBCF3;
     427                        remoteInfo = TestWTF;
     428                };
    396429                7CCE7F501A4124DB00447C4C /* PBXContainerItemProxy */ = {
    397430                        isa = PBXContainerItemProxy;
     
    721754                7C6BBD8B19CEA63000C1F5E0 /* Counters.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Counters.cpp; sourceTree = "<group>"; };
    722755                7C74D42D188228F300E5ED57 /* StringView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StringView.cpp; sourceTree = "<group>"; };
     756                7C83DF681D0A590C00FEBCF3 /* libTestWTF.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libTestWTF.a; sourceTree = BUILT_PRODUCTS_DIR; };
     757                7C83E0231D0A5AE400FEBCF3 /* TestWTF */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = TestWTF; sourceTree = BUILT_PRODUCTS_DIR; };
     758                7C83E0261D0A5B8D00FEBCF3 /* TestWTF.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = TestWTF.xcconfig; sourceTree = "<group>"; };
     759                7C83E0271D0A5B8D00FEBCF3 /* TestWTFLibrary.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = TestWTFLibrary.xcconfig; sourceTree = "<group>"; };
     760                7C83E0291D0A5CDF00FEBCF3 /* libWTF.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libWTF.a; path = ../../../../../Builds/Debug/libWTF.a; sourceTree = "<group>"; };
     761                7C83E0331D0A5F2700FEBCF3 /* libicucore.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.dylib; path = usr/lib/libicucore.dylib; sourceTree = SDKROOT; };
     762                7C83E0361D0A5F7000FEBCF3 /* Utilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Utilities.h; sourceTree = "<group>"; };
     763                7C83E0391D0A602700FEBCF3 /* UtilitiesCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = UtilitiesCocoa.mm; path = cocoa/UtilitiesCocoa.mm; sourceTree = "<group>"; };
    723764                7C882E031C80C624006BF731 /* UserContentWorld.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UserContentWorld.mm; sourceTree = "<group>"; };
    724765                7C882E041C80C624006BF731 /* UserContentWorldPlugIn.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UserContentWorldPlugIn.mm; sourceTree = "<group>"; };
     
    757798                93A427AD180DA60F00CD24D7 /* RefLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RefLogger.h; sourceTree = "<group>"; };
    758799                93A720E518F1A0E800A848E1 /* CalculationValue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CalculationValue.cpp; sourceTree = "<group>"; };
    759                 93A7EB3C18FA63A4009E7670 /* URLExtras.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = URLExtras.mm; sourceTree = "<group>"; };
     800                93A7EB3C18FA63A4009E7670 /* URLExtras.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = URLExtras.mm; path = ../Cocoa/URLExtras.mm; sourceTree = "<group>"; };
    760801                93ABA80816DDAB91002DB2FA /* StringHasher.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StringHasher.cpp; sourceTree = "<group>"; };
    761802                93AF4ECA1506F035007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NewFirstVisuallyNonEmptyLayoutForImages.cpp; sourceTree = "<group>"; };
     
    955996
    956997/* Begin PBXFrameworksBuildPhase section */
     998                7C83DF641D0A590C00FEBCF3 /* Frameworks */ = {
     999                        isa = PBXFrameworksBuildPhase;
     1000                        buildActionMask = 2147483647;
     1001                        files = (
     1002                                7C83E02A1D0A5CDF00FEBCF3 /* libWTF.a in Frameworks */,
     1003                        );
     1004                        runOnlyForDeploymentPostprocessing = 0;
     1005                };
     1006                7C83DFC11D0A5AE400FEBCF3 /* Frameworks */ = {
     1007                        isa = PBXFrameworksBuildPhase;
     1008                        buildActionMask = 2147483647;
     1009                        files = (
     1010                                7C83E03F1D0A61A000FEBCF3 /* libicucore.dylib in Frameworks */,
     1011                        );
     1012                        runOnlyForDeploymentPostprocessing = 0;
     1013                };
    9571014                7CCE7E891A41144E00447C4C /* Frameworks */ = {
    9581015                        isa = PBXFrameworksBuildPhase;
     
    9871044                                08FB779DFE84155DC02AAC07 /* External Frameworks and Libraries */,
    9881045                                1AB674ADFE9D54B511CA2CBB /* Products */,
     1046                                7C83E0281D0A5CDF00FEBCF3 /* Frameworks */,
    9891047                        );
    9901048                        name = TestWebKitAPI;
     
    9941052                        isa = PBXGroup;
    9951053                        children = (
    996                                 44A82E7B19251B3500C1C8C4 /* Cocoa */,
    9971054                                0F139E711A423A1D00F590F5 /* cocoa */,
    9981055                                BC575944126E733C006F0F12 /* InjectedBundle */,
     
    10071064                                BC131883117114A800B69727 /* PlatformUtilities.h */,
    10081065                                BC90951B125533D700083756 /* PlatformWebView.h */,
     1066                                7C83E0361D0A5F7000FEBCF3 /* Utilities.h */,
    10091067                                BCB9E7FA112359A300A137E0 /* Test.h */,
    10101068                                BC131AA8117131FC00B69727 /* TestsController.cpp */,
     
    10341092                                A14FC58D1B8AE36500D107EB /* TestProtocol.h */,
    10351093                                A14FC58E1B8AE36500D107EB /* TestProtocol.mm */,
     1094                                7C83E0391D0A602700FEBCF3 /* UtilitiesCocoa.mm */,
    10361095                                A14FC5841B89739100D107EB /* WKWebViewConfigurationExtras.h */,
    10371096                                A14FC5831B89739100D107EB /* WKWebViewConfigurationExtras.mm */,
     
    10551114                                7CCE7E8C1A41144E00447C4C /* libTestWebKitAPI.a */,
    10561115                                A13EBB491B87339E00097110 /* TestWebKitAPI.wkbundle */,
     1116                                7C83DF681D0A590C00FEBCF3 /* libTestWTF.a */,
     1117                                7C83E0231D0A5AE400FEBCF3 /* TestWTF */,
    10571118                        );
    10581119                        name = Products;
     
    11381199                        sourceTree = "<group>";
    11391200                };
    1140                 44A82E7B19251B3500C1C8C4 /* Cocoa */ = {
    1141                         isa = PBXGroup;
    1142                         children = (
    1143                                 93A7EB3C18FA63A4009E7670 /* URLExtras.mm */,
    1144                         );
    1145                         name = Cocoa;
    1146                         path = Tests/Cocoa;
    1147                         sourceTree = "<group>";
    1148                 };
    11491201                7560917619259C59009EF06E /* ios */ = {
    11501202                        isa = PBXGroup;
     
    11541206                        );
    11551207                        path = ios;
     1208                        sourceTree = "<group>";
     1209                };
     1210                7C83E0281D0A5CDF00FEBCF3 /* Frameworks */ = {
     1211                        isa = PBXGroup;
     1212                        children = (
     1213                                7C83E0331D0A5F2700FEBCF3 /* libicucore.dylib */,
     1214                                7C83E0291D0A5CDF00FEBCF3 /* libWTF.a */,
     1215                        );
     1216                        name = Frameworks;
    11561217                        sourceTree = "<group>";
    11571218                };
     
    12501311                                BC90958012554CF900083756 /* TestWebKitAPI.xcconfig */,
    12511312                                7CCE7EA31A4115CB00447C4C /* TestWebKitAPILibrary.xcconfig */,
     1313                                7C83E0261D0A5B8D00FEBCF3 /* TestWTF.xcconfig */,
     1314                                7C83E0271D0A5B8D00FEBCF3 /* TestWTFLibrary.xcconfig */,
    12521315                                A13EBB521B87346600097110 /* WebProcessPlugIn.xcconfig */,
    12531316                        );
     
    12581321                        isa = PBXGroup;
    12591322                        children = (
    1260                                 0766DD1F1A5AD5200023E3BB /* PendingAPIRequestURL.cpp */,
    12611323                                0F139E741A423A4600F590F5 /* cocoa */,
    12621324                                C0C5D3BB14598B6F00A802A6 /* mac */,
    12631325                                BC90977B125571AE00083756 /* Resources */,
    12641326                                BC246D8C132F115A00B56D7C /* AboutBlankLoad.cpp */,
     1327                                BC246D97132F1FE100B56D7C /* CanHandleRequest_Bundle.cpp */,
    12651328                                BC246D98132F1FE100B56D7C /* CanHandleRequest.cpp */,
    1266                                 BC246D97132F1FE100B56D7C /* CanHandleRequest_Bundle.cpp */,
    12671329                                1A50AA1C1A2A4E7000F4C345 /* CloseFromWithinCreatePage.cpp */,
    12681330                                7C8DDAA91735DE1D00EA5AC0 /* CloseThenTerminate.cpp */,
    12691331                                F6F3F29013342FEB00A6BF19 /* CookieManager.cpp */,
     1332                                F6B7BE92174691EF008A3445 /* DidAssociateFormControls_Bundle.cpp */,
    12701333                                F6B7BE93174691EF008A3445 /* DidAssociateFormControls.cpp */,
    1271                                 F6B7BE92174691EF008A3445 /* DidAssociateFormControls_Bundle.cpp */,
    12721334                                9331407B17B4419000F083B1 /* DidNotHandleKeyDown.cpp */,
     1335                                BCB68041126FBFF100642A61 /* DocumentStartUserScriptAlertCrash_Bundle.cpp */,
    12731336                                BCB6803F126FBFE100642A61 /* DocumentStartUserScriptAlertCrash.cpp */,
    1274                                 BCB68041126FBFF100642A61 /* DocumentStartUserScriptAlertCrash_Bundle.cpp */,
    1275                                 9B0786A21C58830F00D159E3 /* InjectedBundleMakeAllShadowRootsOpen.cpp */,
    1276                                 9B0786A41C5885C300D159E3 /* InjectedBundleMakeAllShadowRootOpen_Bundle.cpp */,
     1337                                51393E1D1523944A005F39C5 /* DOMWindowExtensionBasic_Bundle.cpp */,
    12771338                                51393E1E1523944A005F39C5 /* DOMWindowExtensionBasic.cpp */,
    1278                                 51393E1D1523944A005F39C5 /* DOMWindowExtensionBasic_Bundle.cpp */,
     1339                                F6F49C6615545C8D0007F39D /* DOMWindowExtensionNoCache_Bundle.cpp */,
    12791340                                F6F49C6715545C8D0007F39D /* DOMWindowExtensionNoCache.cpp */,
    1280                                 F6F49C6615545C8D0007F39D /* DOMWindowExtensionNoCache_Bundle.cpp */,
    12811341                                C045F9441385C2E900C0F3CD /* DownloadDecideDestinationCrash.cpp */,
    12821342                                75F3133F18C171B70041CAEC /* EphemeralSessionPushStateNoHistoryCallback.cpp */,
     
    12841344                                BCC8B95A12611F4700DE46A4 /* FailedLoad.cpp */,
    12851345                                1A02C84E125D4A8400E3F4BD /* Find.cpp */,
    1286                                 C51AFB98169F49FF009CCF66 /* FindMatches.mm */,
    12871346                                1ADBEFAD130C689C00D61D19 /* ForceRepaint.cpp */,
    12881347                                BCBD370F125AA2EB00D2C29F /* FrameMIMETypeHTML.cpp */,
    12891348                                BCBD3760125ABCFE00D2C29F /* FrameMIMETypePNG.cpp */,
    12901349                                26F52EAA182872600023D412 /* Geolocation.cpp */,
     1350                                F660AA0F15A5F624003A1243 /* GetInjectedBundleInitializationUserDataCallback_Bundle.cpp */,
    12911351                                F660AA0C15A5F061003A1243 /* GetInjectedBundleInitializationUserDataCallback.cpp */,
    1292                                 F660AA0F15A5F624003A1243 /* GetInjectedBundleInitializationUserDataCallback_Bundle.cpp */,
     1352                                4BFDFFA61314776C0061F24B /* HitTestResultNodeHandle_Bundle.cpp */,
    12931353                                4BFDFFA8131477770061F24B /* HitTestResultNodeHandle.cpp */,
    1294                                 4BFDFFA61314776C0061F24B /* HitTestResultNodeHandle_Bundle.cpp */,
     1354                                BC575AAF126E83C8006F0F12 /* InjectedBundleBasic_Bundle.cpp */,
    12951355                                BC575AAC126E83B9006F0F12 /* InjectedBundleBasic.cpp */,
    1296                                 BC575AAF126E83C8006F0F12 /* InjectedBundleBasic_Bundle.cpp */,
     1356                                378E64751632655D00B6C676 /* InjectedBundleFrameHitTest_Bundle.cpp */,
    12971357                                378E64711632646D00B6C676 /* InjectedBundleFrameHitTest.cpp */,
    1298                                 378E64751632655D00B6C676 /* InjectedBundleFrameHitTest_Bundle.cpp */,
     1358                                F660AA1415A61ABF003A1243 /* InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp */,
    12991359                                F660AA1215A619C8003A1243 /* InjectedBundleInitializationUserDataCallbackWins.cpp */,
    1300                                 F660AA1415A61ABF003A1243 /* InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp */,
     1360                                9B0786A41C5885C300D159E3 /* InjectedBundleMakeAllShadowRootOpen_Bundle.cpp */,
     1361                                9B0786A21C58830F00D159E3 /* InjectedBundleMakeAllShadowRootsOpen.cpp */,
    13011362                                93D3D19D17B1A84200C7C415 /* LayoutMilestonesWithAllContentInFrame.cpp */,
    13021363                                52CB47401448FB9300873995 /* LoadAlternateHTMLStringWithNonDirectoryURL.cpp */,
     1364                                33DC89131419579F00747EF7 /* LoadCanceledNoServerRedirectCallback_Bundle.cpp */,
    13031365                                33DC8910141953A300747EF7 /* LoadCanceledNoServerRedirectCallback.cpp */,
    1304                                 33DC89131419579F00747EF7 /* LoadCanceledNoServerRedirectCallback_Bundle.cpp */,
    13051366                                8AA28C1916D2FA7B002FF4DB /* LoadPageOnCrash.cpp */,
     1367                                7A5623101AD5AF3E0096B920 /* MenuTypesForMouseEvents.cpp */,
    13061368                                51CB4AD71B3A079C00C1B1C6 /* ModalAlertsSPI.cpp */,
     1369                                33BE5AF8137B5AAE00705813 /* MouseMoveAfterCrash_Bundle.cpp */,
    13071370                                33BE5AF4137B5A6C00705813 /* MouseMoveAfterCrash.cpp */,
    1308                                 33BE5AF8137B5AAE00705813 /* MouseMoveAfterCrash_Bundle.cpp */,
     1371                                93F1DB3314DA20870024C362 /* NewFirstVisuallyNonEmptyLayout_Bundle.cpp */,
    13091372                                93F1DB3014DA20760024C362 /* NewFirstVisuallyNonEmptyLayout.cpp */,
    1310                                 93F1DB3314DA20870024C362 /* NewFirstVisuallyNonEmptyLayout_Bundle.cpp */,
     1373                                93F1DB5614DB1B840024C362 /* NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp */,
    13111374                                93F1DB5414DB1B730024C362 /* NewFirstVisuallyNonEmptyLayoutFails.cpp */,
    1312                                 93F1DB5614DB1B840024C362 /* NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp */,
     1375                                93AF4ECD1506F064007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp */,
    13131376                                93AF4ECA1506F035007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages.cpp */,
    1314                                 93AF4ECD1506F064007FD57E /* NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp */,
     1377                                93F7E86E14DC8E5B00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp */,
    13151378                                93F7E86B14DC8E4D00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames.cpp */,
    1316                                 93F7E86E14DC8E5B00C84A99 /* NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp */,
    13171379                                7CCB4DA71C83AE7300CC6918 /* PageGroup.cpp */,
    13181380                                BC909779125571AB00083756 /* PageLoadBasic.cpp */,
    13191381                                BC2D004812A9FDFA00E732A3 /* PageLoadDidChangeLocationWithinPageForFrame.cpp */,
     1382                                52E5CE4814D21EAB003B2BD8 /* ParentFrame_Bundle.cpp */,
    13201383                                52E5CE4514D21E9D003B2BD8 /* ParentFrame.cpp */,
    1321                                 52E5CE4814D21EAB003B2BD8 /* ParentFrame_Bundle.cpp */,
    1322                                 C54237EE16B8955800E638FC /* PasteboardNotifications.mm */,
    13231384                                C54237ED16B8955800E638FC /* PasteboardNotifications_Bundle.cpp */,
     1385                                0766DD1F1A5AD5200023E3BB /* PendingAPIRequestURL.cpp */,
    13241386                                333B9CE11277F23100FEFCE3 /* PreventEmptyUserAgent.cpp */,
    13251387                                F6FDDDD214241AD4004F1729 /* PrivateBrowsingPushStateNoHistoryCallback.cpp */,
     
    13271389                                2DD7D3A9178205D00026E1E3 /* ResizeReversePaginatedWebView.cpp */,
    13281390                                8A2C750D16CED9550024F352 /* ResizeWindowAfterCrash.cpp */,
     1391                                C0BD669E131D3CFF00E18F2A /* ResponsivenessTimerDoesntFireEarly_Bundle.cpp */,
    13291392                                C0BD669C131D3CF700E18F2A /* ResponsivenessTimerDoesntFireEarly.cpp */,
    1330                                 C0BD669E131D3CFF00E18F2A /* ResponsivenessTimerDoesntFireEarly_Bundle.cpp */,
    13311393                                C0ADBE8212FCA6AA00D2C129 /* RestoreSessionStateContainingFormData.cpp */,
    13321394                                2D640B5417875DFF00BFAF99 /* ScrollPinningBehaviors.cpp */,
     1395                                51FCF7971534AC6D00104491 /* ShouldGoToBackForwardListItem_Bundle.cpp */,
    13331396                                51FCF7981534AC6D00104491 /* ShouldGoToBackForwardListItem.cpp */,
    1334                                 51FCF7971534AC6D00104491 /* ShouldGoToBackForwardListItem_Bundle.cpp */,
    13351397                                51E5C7041919EA5F00D8B3E1 /* ShouldKeepCurrentBackForwardListItemInList.cpp */,
    13361398                                C02B77F1126612140026BF0F /* SpacebarScrolling.cpp */,
     1399                                7673499A1930182E00E44DF9 /* StopLoadingDuringDidFailProvisionalLoad_bundle.cpp */,
    13371400                                76734997193016DC00E44DF9 /* StopLoadingDuringDidFailProvisionalLoad.cpp */,
    1338                                 7673499A1930182E00E44DF9 /* StopLoadingDuringDidFailProvisionalLoad_bundle.cpp */,
    13391401                                1AE72F47173EB214006362F0 /* TerminateTwice.cpp */,
     1402                                CE3524F21B142B8D0028A7C5 /* TextFieldDidBeginAndEndEditing_Bundle.cpp */,
    13401403                                CE3524F11B142B8D0028A7C5 /* TextFieldDidBeginAndEndEditing.cpp */,
    1341                                 CE3524F21B142B8D0028A7C5 /* TextFieldDidBeginAndEndEditing_Bundle.cpp */,
    13421404                                4A410F4B19AF7BD6002EBAB5 /* UserMedia.cpp */,
     1405                                BC22D31714DC68B800FFB1DD /* UserMessage_Bundle.cpp */,
    13431406                                BC22D31314DC689800FFB1DD /* UserMessage.cpp */,
    1344                                 BC22D31714DC68B800FFB1DD /* UserMessage_Bundle.cpp */,
     1407                                520BCF4A141EB09E00937EA8 /* WebArchive_Bundle.cpp */,
    13451408                                520BCF4B141EB09E00937EA8 /* WebArchive.cpp */,
    1346                                 520BCF4A141EB09E00937EA8 /* WebArchive_Bundle.cpp */,
    13471409                                0F17BBD415AF6C4D007AB753 /* WebCoreStatisticsWithNoWebProcess.cpp */,
     1410                                7CFBCAE31743238E00B2BFCF /* WillLoad_Bundle.cpp */,
    13481411                                7CFBCADD1743234F00B2BFCF /* WillLoad.cpp */,
    1349                                 7CFBCAE31743238E00B2BFCF /* WillLoad_Bundle.cpp */,
     1412                                76E182DC1547569100F1FADD /* WillSendSubmitEvent_Bundle.cpp */,
    13501413                                76E182D91547550100F1FADD /* WillSendSubmitEvent.cpp */,
    1351                                 76E182DC1547569100F1FADD /* WillSendSubmitEvent_Bundle.cpp */,
     1414                                7C54A4BF1AA11CE400380F78 /* WKBundleFileHandle_Bundle.cpp */,
    13521415                                7C54A4BC1AA11CCA00380F78 /* WKBundleFileHandle.cpp */,
    1353                                 7C54A4BF1AA11CE400380F78 /* WKBundleFileHandle_Bundle.cpp */,
    13541416                                A1FDFD2E19C288BB005148A4 /* WKImageCreateCGImageCrash.cpp */,
    1355                                 7A5623101AD5AF3E0096B920 /* MenuTypesForMouseEvents.cpp */,
    13561417                                7C89D2AA1A69B80D003A5FDE /* WKPageConfiguration.cpp */,
    13571418                                52D673EC1AFB126800FA19FE /* WKPageCopySessionStateWithFiltering.cpp */,
     
    13591420                                524BBC9C19DF377A002F1AF1 /* WKPageIsPlayingAudio.cpp */,
    13601421                                BC7B619A1299FE9E00D174A4 /* WKPreferences.cpp */,
     1422                                1CF0D3781BBF2F3D00B4EF54 /* WKRetainPtr.cpp */,
    13611423                                BC90995D12567BC100083756 /* WKString.cpp */,
    13621424                                BC9099931256ACF100083756 /* WKStringJSString.cpp */,
    1363                                 1CF0D3781BBF2F3D00B4EF54 /* WKRetainPtr.cpp */,
     1425                                C51AFB98169F49FF009CCF66 /* FindMatches.mm */,
     1426                                C54237EE16B8955800E638FC /* PasteboardNotifications.mm */,
    13641427                        );
    13651428                        path = WebKit2;
     
    16411704                        children = (
    16421705                                CD89D0381C4EDB2A00040A04 /* WebCoreNSURLSession.mm */,
     1706                                93A7EB3C18FA63A4009E7670 /* URLExtras.mm */,
    16431707                        );
    16441708                        name = cocoa;
     
    16841748
    16851749/* Begin PBXNativeTarget section */
     1750                7C83DE951D0A590C00FEBCF3 /* TestWTFLibrary */ = {
     1751                        isa = PBXNativeTarget;
     1752                        buildConfigurationList = 7C83DF651D0A590C00FEBCF3 /* Build configuration list for PBXNativeTarget "TestWTFLibrary" */;
     1753                        buildPhases = (
     1754                                7C83DE961D0A590C00FEBCF3 /* Sources */,
     1755                                7C83DF641D0A590C00FEBCF3 /* Frameworks */,
     1756                        );
     1757                        buildRules = (
     1758                        );
     1759                        dependencies = (
     1760                        );
     1761                        name = TestWTFLibrary;
     1762                        productName = TestWebKitAPILibrary;
     1763                        productReference = 7C83DF681D0A590C00FEBCF3 /* libTestWTF.a */;
     1764                        productType = "com.apple.product-type.library.static";
     1765                };
     1766                7C83DF951D0A5AE400FEBCF3 /* TestWTF */ = {
     1767                        isa = PBXNativeTarget;
     1768                        buildConfigurationList = 7C83E0201D0A5AE400FEBCF3 /* Build configuration list for PBXNativeTarget "TestWTF" */;
     1769                        buildPhases = (
     1770                                7C83DF9C1D0A5AE400FEBCF3 /* Sources */,
     1771                                7C83DFC11D0A5AE400FEBCF3 /* Frameworks */,
     1772                        );
     1773                        buildRules = (
     1774                        );
     1775                        dependencies = (
     1776                                7C83E0251D0A5B2500FEBCF3 /* PBXTargetDependency */,
     1777                        );
     1778                        name = TestWTF;
     1779                        productInstallPath = "$(HOME)/bin";
     1780                        productName = TestWebKitAPI;
     1781                        productReference = 7C83E0231D0A5AE400FEBCF3 /* TestWTF */;
     1782                        productType = "com.apple.product-type.tool";
     1783                };
    16861784                7CCE7E8B1A41144E00447C4C /* TestWebKitAPILibrary */ = {
    16871785                        isa = PBXNativeTarget;
     
    17631861                                LastUpgradeCheck = 0700;
    17641862                                TargetAttributes = {
     1863                                        7C83E02B1D0A5E1000FEBCF3 = {
     1864                                                CreatedOnToolsVersion = 8.0;
     1865                                                ProvisioningStyle = Automatic;
     1866                                        };
    17651867                                        7CCE7E8B1A41144E00447C4C = {
    17661868                                                CreatedOnToolsVersion = 6.3;
     
    17931895                        projectRoot = "";
    17941896                        targets = (
     1897                                7C83E02B1D0A5E1000FEBCF3 /* All */,
    17951898                                8DD76F960486AA7600D96B5E /* TestWebKitAPI */,
     1899                                7CCE7E8B1A41144E00447C4C /* TestWebKitAPILibrary */,
     1900                                7C83DF951D0A5AE400FEBCF3 /* TestWTF */,
     1901                                7C83DE951D0A590C00FEBCF3 /* TestWTFLibrary */,
    17961902                                BC57597F126E74AF006F0F12 /* InjectedBundleTestWebKitAPI */,
    1797                                 7CCE7E8B1A41144E00447C4C /* TestWebKitAPILibrary */,
    17981903                                A13EBB481B87339E00097110 /* WebProcessPlugIn */,
    17991904                        );
     
    18121917
    18131918/* Begin PBXSourcesBuildPhase section */
     1919                7C83DE961D0A590C00FEBCF3 /* Sources */ = {
     1920                        isa = PBXSourcesBuildPhase;
     1921                        buildActionMask = 2147483647;
     1922                        files = (
     1923                                7C83DE991D0A590C00FEBCF3 /* AtomicString.cpp in Sources */,
     1924                                7C83DE9C1D0A590C00FEBCF3 /* BloomFilter.cpp in Sources */,
     1925                                7C83DEA01D0A590C00FEBCF3 /* CheckedArithmeticOperations.cpp in Sources */,
     1926                                7C83DEA61D0A590C00FEBCF3 /* Counters.cpp in Sources */,
     1927                                7C83DEA91D0A590C00FEBCF3 /* CString.cpp in Sources */,
     1928                                7C83DEAD1D0A590C00FEBCF3 /* Deque.cpp in Sources */,
     1929                                7C83DEC31D0A590C00FEBCF3 /* Condition.cpp in Sources */,
     1930                                7C83DED21D0A590C00FEBCF3 /* HashMap.cpp in Sources */,
     1931                                7C83DED41D0A590C00FEBCF3 /* HashSet.cpp in Sources */,
     1932                                7C83DED71D0A590C00FEBCF3 /* RefLogger.cpp in Sources */,
     1933                                7C83DEE01D0A590C00FEBCF3 /* IntegerToStringConversion.cpp in Sources */,
     1934                                7C83DEE81D0A590C00FEBCF3 /* ListHashSet.cpp in Sources */,
     1935                                7C83DEED1D0A590C00FEBCF3 /* MathExtras.cpp in Sources */,
     1936                                7C83DEEF1D0A590C00FEBCF3 /* MD5.cpp in Sources */,
     1937                                7C83DEF11D0A590C00FEBCF3 /* MediaTime.cpp in Sources */,
     1938                                7C83DEF61D0A590C00FEBCF3 /* MetaAllocator.cpp in Sources */,
     1939                                7C83DEFE1D0A590C00FEBCF3 /* NakedPtr.cpp in Sources */,
     1940                                7C83DF011D0A590C00FEBCF3 /* Optional.cpp in Sources */,
     1941                                7C83DF021D0A590C00FEBCF3 /* OSObjectPtr.cpp in Sources */,
     1942                                7C83DF051D0A590C00FEBCF3 /* RunLoop.cpp in Sources */,
     1943                                7C83DF121D0A590C00FEBCF3 /* ScopedLambda.cpp in Sources */,
     1944                                7C83DF131D0A590C00FEBCF3 /* RedBlackTree.cpp in Sources */,
     1945                                7C83DF141D0A590C00FEBCF3 /* Ref.cpp in Sources */,
     1946                                7C83DF151D0A590C00FEBCF3 /* RefCounter.cpp in Sources */,
     1947                                7C83DF161D0A590C00FEBCF3 /* RefPtr.cpp in Sources */,
     1948                                7C83DF1D1D0A590C00FEBCF3 /* Lock.cpp in Sources */,
     1949                                7C83E03B1D0A602700FEBCF3 /* UtilitiesCocoa.mm in Sources */,
     1950                                7C83DF241D0A590C00FEBCF3 /* RetainPtr.mm in Sources */,
     1951                                7C83DF261D0A590C00FEBCF3 /* SaturatedArithmeticOperations.cpp in Sources */,
     1952                                7C83DF2A1D0A590C00FEBCF3 /* SHA1.cpp in Sources */,
     1953                                7C83DF321D0A590C00FEBCF3 /* StringBuilder.cpp in Sources */,
     1954                                7C83DF361D0A590C00FEBCF3 /* StringHasher.cpp in Sources */,
     1955                                7C83DF371D0A590C00FEBCF3 /* StringImpl.cpp in Sources */,
     1956                                7C83DF381D0A590C00FEBCF3 /* StringOperators.cpp in Sources */,
     1957                                7C83DF3A1D0A590C00FEBCF3 /* StringView.cpp in Sources */,
     1958                                7C83DF3D1D0A590C00FEBCF3 /* TemporaryChange.cpp in Sources */,
     1959                                7C83DF401D0A590C00FEBCF3 /* TestsController.cpp in Sources */,
     1960                                7C83DF4C1D0A590C00FEBCF3 /* Vector.cpp in Sources */,
     1961                                7C83DF591D0A590C00FEBCF3 /* ParkingLot.cpp in Sources */,
     1962                                7C83DF631D0A590C00FEBCF3 /* WTFString.cpp in Sources */,
     1963                        );
     1964                        runOnlyForDeploymentPostprocessing = 0;
     1965                };
     1966                7C83DF9C1D0A5AE400FEBCF3 /* Sources */ = {
     1967                        isa = PBXSourcesBuildPhase;
     1968                        buildActionMask = 2147483647;
     1969                        files = (
     1970                                7C83DFA21D0A5AE400FEBCF3 /* mainIOS.mm in Sources */,
     1971                                7C83DFAD1D0A5AE400FEBCF3 /* mainMac.mm in Sources */,
     1972                        );
     1973                        runOnlyForDeploymentPostprocessing = 0;
     1974                };
    18141975                7CCE7E881A41144E00447C4C /* Sources */ = {
    18151976                        isa = PBXSourcesBuildPhase;
     
    18181979                                7CCE7EE41A411AE600447C4C /* AboutBlankLoad.cpp in Sources */,
    18191980                                7CCE7EB31A411A7E00447C4C /* AcceptsFirstMouse.mm in Sources */,
    1820                                 7CCE7F301A411B8E00447C4C /* AtomicString.cpp in Sources */,
    18211981                                7CCE7EB41A411A7E00447C4C /* AttributedString.mm in Sources */,
    18221982                                7CCE7EB51A411A7E00447C4C /* BackForwardList.mm in Sources */,
    1823                                 E40019331ACE9B88001B0A2A /* BloomFilter.cpp in Sources */,
    18241983                                7CCE7EDC1A411A9200447C4C /* CalculationValue.cpp in Sources */,
     1984                                7C83E0BA1D0A64FB00FEBCF3 /* Coding.mm in Sources */,
    18251985                                7CCE7EB61A411A7E00447C4C /* CancelLoadFromResourceLoadDelegate.mm in Sources */,
    18261986                                7CCE7EE71A411AE600447C4C /* CanHandleRequest.cpp in Sources */,
    1827                                 7CCE7F311A411B8E00447C4C /* CheckedArithmeticOperations.cpp in Sources */,
    18281987                                7CCE7EE61A411AE600447C4C /* CloseFromWithinCreatePage.cpp in Sources */,
    18291988                                7CCE7EB71A411A7E00447C4C /* CloseNewWindowInNavigationPolicyDelegate.mm in Sources */,
     
    18331992                                7CCE7EAC1A411A3400447C4C /* Counters.cpp in Sources */,
    18341993                                7CCE7EDB1A411A9200447C4C /* CSSParser.cpp in Sources */,
     1994                                7C83E0401D0A63E300FEBCF3 /* FirstResponderScrollingPosition.mm in Sources */,
     1995                                7C83E0521D0A641800FEBCF3 /* SharedBuffer.cpp in Sources */,
    18351996                                0F3B94A71A77267400DE3272 /* WKWebViewEvaluateJavaScript.mm in Sources */,
    1836                                 7CCE7F321A411B8E00447C4C /* CString.cpp in Sources */,
    18371997                                7CCE7F291A411B1000447C4C /* CustomProtocolsInvalidScheme.mm in Sources */,
    18381998                                7CCE7F2A1A411B1000447C4C /* CustomProtocolsSyncXHRTest.mm in Sources */,
    18391999                                7CCE7F2B1A411B1000447C4C /* CustomProtocolsTest.mm in Sources */,
    1840                                 7CCE7F331A411B8E00447C4C /* Deque.cpp in Sources */,
    18412000                                7CCE7EB91A411A7E00447C4C /* DeviceScaleFactorInDashboardRegions.mm in Sources */,
     2001                                7C83E0BF1D0A652200FEBCF3 /* IndexedDBPersistence.mm in Sources */,
    18422002                                7CCE7EBA1A411A7E00447C4C /* DeviceScaleFactorOnBack.mm in Sources */,
    18432003                                7CCE7EE91A411AE600447C4C /* DidAssociateFormControls.cpp in Sources */,
     
    18502010                                7CCE7EEC1A411AE600447C4C /* DOMWindowExtensionBasic.cpp in Sources */,
    18512011                                7CCE7EED1A411AE600447C4C /* DOMWindowExtensionNoCache.cpp in Sources */,
     2012                                7C83E04D1D0A641800FEBCF3 /* DFACombiner.cpp in Sources */,
    18522013                                9984FACC1CFFAF60008D198C /* WKWebViewTextInput.mm in Sources */,
    18532014                                7CCE7F231A411AF600447C4C /* Download.mm in Sources */,
    18542015                                7CCE7EEE1A411AE600447C4C /* DownloadDecideDestinationCrash.cpp in Sources */,
     2016                                7C83E0C01D0A652700FEBCF3 /* LoadInvalidURLRequest.mm in Sources */,
     2017                                7C83E0C21D0A653500FEBCF3 /* QuickLook.mm in Sources */,
     2018                                7C83E0421D0A63FD00FEBCF3 /* WebViewCloseInsideDidFinishLoadForFrame.mm in Sources */,
    18552019                                7CCE7EBE1A411A7E00447C4C /* DynamicDeviceScaleFactor.mm in Sources */,
    18562020                                37BCA61C1B596BA9002012CA /* ShouldOpenExternalURLsInNewWindowActions.mm in Sources */,
     2021                                7C83E0411D0A63F200FEBCF3 /* ViewWithEditableAreaLeak.mm in Sources */,
    18572022                                7CEFA9661AC0B9E200B910FD /* _WKUserContentExtensionStore.mm in Sources */,
    18582023                                7CCE7EE01A411A9A00447C4C /* EditorCommands.mm in Sources */,
     
    18602025                                7CCE7EEF1A411AE600447C4C /* EphemeralSessionPushStateNoHistoryCallback.cpp in Sources */,
    18612026                                7CCE7EF01A411AE600447C4C /* EvaluateJavaScript.cpp in Sources */,
    1862                                 0FEAE3691B7D19D200CE17F2 /* Condition.cpp in Sources */,
    18632027                                7CCE7EF11A411AE600447C4C /* FailedLoad.cpp in Sources */,
    18642028                                7CCE7EF31A411AE600447C4C /* Find.cpp in Sources */,
     
    18662030                                7CCE7EF51A411AE600447C4C /* ForceRepaint.cpp in Sources */,
    18672031                                52D673EE1AFB127300FA19FE /* WKPageCopySessionStateWithFiltering.cpp in Sources */,
     2032                                7C83E0C61D0A654E00FEBCF3 /* VideoControlsManager.mm in Sources */,
    18682033                                7CCE7EC01A411A7E00447C4C /* FragmentNavigation.mm in Sources */,
    18692034                                7CCE7EF61A411AE600447C4C /* FrameMIMETypeHTML.cpp in Sources */,
     
    18722037                                7CCE7EE11A411A9A00447C4C /* GetBackingScaleFactor.mm in Sources */,
    18732038                                CDBFCC451A9FF45300A7B691 /* FullscreenZoomInitialFrame.mm in Sources */,
     2039                                7C83E0B61D0A64B300FEBCF3 /* ModalAlertsSPI.cpp in Sources */,
     2040                                7C83E04E1D0A641800FEBCF3 /* DFAMinimizer.cpp in Sources */,
     2041                                7C83E0B81D0A64BD00FEBCF3 /* InjectedBundleMakeAllShadowRootsOpen.cpp in Sources */,
    18742042                                7CCE7EF91A411AE600447C4C /* GetInjectedBundleInitializationUserDataCallback.cpp in Sources */,
    18752043                                536770341CC8022800D425B1 /* WebScriptObjectDescription.mm in Sources */,
    18762044                                7CCE7EE21A411A9A00447C4C /* GetPIDAfterAbortedProcessLaunch.cpp in Sources */,
    1877                                 7CCE7F351A411B8E00447C4C /* HashMap.cpp in Sources */,
    18782045                                51714EB81CF8CA17004723C4 /* WebProcessKillIDBCleanup.mm in Sources */,
    1879                                 7CCE7F361A411B8E00447C4C /* HashSet.cpp in Sources */,
    18802046                                7CCE7EFA1A411AE600447C4C /* HitTestResultNodeHandle.cpp in Sources */,
    18812047                                7CCE7EC11A411A7E00447C4C /* HTMLCollectionNamedItem.mm in Sources */,
    1882                                 442BBF6A1C91CB1B0017087F /* RefLogger.cpp in Sources */,
    18832048                                7CCE7EC21A411A7E00447C4C /* HTMLFormCollectionNamedItem.mm in Sources */,
    18842049                                7CCE7EFB1A411AE600447C4C /* InjectedBundleBasic.cpp in Sources */,
     
    18892054                                7CCE7EDA1A411A8700447C4C /* InstanceMethodSwizzler.mm in Sources */,
    18902055                                7C54A4BE1AA11CCA00380F78 /* WKBundleFileHandle.cpp in Sources */,
    1891                                 7CCE7F371A411B8E00447C4C /* IntegerToStringConversion.cpp in Sources */,
    18922056                                CDC8E48D1BC5CB4500594FEC /* AudioSessionCategoryIOS.mm in Sources */,
    18932057                                7CCE7EAD1A411A3400447C4C /* JavaScriptTest.cpp in Sources */,
     
    18972061                                7CCE7EDF1A411A9200447C4C /* LayoutUnit.cpp in Sources */,
    18982062                                A13EBBB11B87438000097110 /* BundleParameters.mm in Sources */,
    1899                                 7CCE7F381A411B8E00447C4C /* ListHashSet.cpp in Sources */,
    19002063                                37D36ED71AF42ECD00BAF5D9 /* LoadAlternateHTMLString.mm in Sources */,
    19012064                                7CCE7EFE1A411AE600447C4C /* LoadAlternateHTMLStringWithNonDirectoryURL.cpp in Sources */,
     2065                                7C83E04C1D0A641800FEBCF3 /* WebCoreNSURLSession.mm in Sources */,
    19022066                                7CCE7EFF1A411AE600447C4C /* LoadCanceledNoServerRedirectCallback.cpp in Sources */,
    19032067                                7CCE7F001A411AE600447C4C /* LoadPageOnCrash.cpp in Sources */,
    1904                                 7CCE7F3A1A411B8E00447C4C /* MathExtras.cpp in Sources */,
     2068                                7C83E0BC1D0A650700FEBCF3 /* FixedLayoutSize.mm in Sources */,
    19052069                                7C89D2AC1A69B80D003A5FDE /* WKPageConfiguration.cpp in Sources */,
    1906                                 7CCE7F391A411B8E00447C4C /* MD5.cpp in Sources */,
    19072070                                A14FC5901B8AE36F00D107EB /* TestProtocol.mm in Sources */,
    1908                                 7CCE7F3B1A411B8E00447C4C /* MediaTime.cpp in Sources */,
    19092071                                7CCB4DA91C83AE7300CC6918 /* PageGroup.cpp in Sources */,
    19102072                                7CCE7EB21A411A5100447C4C /* MemoryCacheAddImageToCacheIOS.mm in Sources */,
    19112073                                7CCE7EC51A411A7E00447C4C /* MemoryCacheDisableWithinResourceLoadDelegate.mm in Sources */,
    19122074                                7CCE7EC61A411A7E00447C4C /* MemoryCachePruneWithinResourceLoadDelegate.mm in Sources */,
    1913                                 7CCE7F3C1A411B8E00447C4C /* MetaAllocator.cpp in Sources */,
    19142075                                7CCE7F011A411AE600447C4C /* MouseMoveAfterCrash.cpp in Sources */,
    19152076                                7CCE7F241A411AF600447C4C /* Navigation.mm in Sources */,
     
    19192080                                7CCE7F041A411AE600447C4C /* NewFirstVisuallyNonEmptyLayoutForImages.cpp in Sources */,
    19202081                                764322D71B61CCC30024F801 /* WordBoundaryTypingAttributes.mm in Sources */,
    1921                                 FEB6F7511B2BA464009E4922 /* NakedPtr.cpp in Sources */,
    19222082                                7CCE7F051A411AE600447C4C /* NewFirstVisuallyNonEmptyLayoutFrames.cpp in Sources */,
    19232083                                7CCE7F251A411AF600447C4C /* OpenAndCloseWindow.mm in Sources */,
    1924                                 7CCE7F3D1A411B8E00447C4C /* Optional.cpp in Sources */,
    1925                                 7CCE7F4C1A411B9800447C4C /* OSObjectPtr.cpp in Sources */,
    19262084                                7CCE7F071A411AE600447C4C /* PageLoadBasic.cpp in Sources */,
     2085                                7C83E0C11D0A652F00FEBCF3 /* ProvisionalURLNotChange.mm in Sources */,
    19272086                                7CCE7F081A411AE600447C4C /* PageLoadDidChangeLocationWithinPageForFrame.cpp in Sources */,
    1928                                 E4C9ABC91B3DB2C40040A987 /* RunLoop.cpp in Sources */,
    19292087                                7CCE7EC71A411A7E00447C4C /* PageVisibilityStateWithWindowChanges.mm in Sources */,
    19302088                                7CCE7F091A411AE600447C4C /* ParentFrame.cpp in Sources */,
    19312089                                7CCE7F0A1A411AE600447C4C /* PasteboardNotifications.mm in Sources */,
     2090                                7C83E0BB1D0A650000FEBCF3 /* FindInPage.mm in Sources */,
    19322091                                7CCE7EAF1A411A3800447C4C /* PlatformUtilities.cpp in Sources */,
    19332092                                0F139E781A423A6B00F590F5 /* PlatformUtilitiesCocoa.mm in Sources */,
     
    19362095                                7CCE7F261A411AF600447C4C /* Preferences.mm in Sources */,
    19372096                                7CCE7F0B1A411AE600447C4C /* PreventEmptyUserAgent.cpp in Sources */,
     2097                                7C83E0BD1D0A650C00FEBCF3 /* FullscreenTopContentInset.mm in Sources */,
    19382098                                7CCE7F2C1A411B1000447C4C /* PreventImageLoadWithAutoResizing.mm in Sources */,
    19392099                                7CCE7F0C1A411AE600447C4C /* PrivateBrowsingPushStateNoHistoryCallback.cpp in Sources */,
    19402100                                7CCE7EC81A411A7E00447C4C /* PublicSuffix.mm in Sources */,
    1941                                 DC69AA641CF77C7D00C6272F /* ScopedLambda.cpp in Sources */,
    1942                                 7CCE7F3E1A411B8E00447C4C /* RedBlackTree.cpp in Sources */,
    1943                                 7CCE7F3F1A411B8E00447C4C /* Ref.cpp in Sources */,
    1944                                 7CCE7F401A411B8E00447C4C /* RefCounter.cpp in Sources */,
    1945                                 7CCE7F411A411B8E00447C4C /* RefPtr.cpp in Sources */,
     2101                                7C83E0511D0A641800FEBCF3 /* ParsedContentRange.cpp in Sources */,
    19462102                                7C3965061CDD74F90094DBB8 /* Color.cpp in Sources */,
    19472103                                7CCE7F0D1A411AE600447C4C /* ReloadPageAfterCrash.cpp in Sources */,
     
    19502106                                7CCE7ECA1A411A7E00447C4C /* RenderedImageFromDOMRange.mm in Sources */,
    19512107                                51CD1C6C1B38CE4300142CA5 /* ModalAlerts.mm in Sources */,
    1952                                 0FFC45A61B73EBEB0085BD62 /* Lock.cpp in Sources */,
     2108                                7C83E0531D0A643A00FEBCF3 /* PendingAPIRequestURL.cpp in Sources */,
     2109                                7C83E0C31D0A653A00FEBCF3 /* RemoteObjectRegistry.mm in Sources */,
    19532110                                7CCE7F0E1A411AE600447C4C /* ResizeReversePaginatedWebView.cpp in Sources */,
    19542111                                7CCE7F0F1A411AE600447C4C /* ResizeWindowAfterCrash.cpp in Sources */,
     
    19562113                                7CCE7F111A411AE600447C4C /* RestoreSessionStateContainingFormData.cpp in Sources */,
    19572114                                2D00065F1C1F589A0088E6A7 /* WKPDFViewResizeCrash.mm in Sources */,
    1958                                 7CCE7F4E1A411BA400447C4C /* RetainPtr.cpp in Sources */,
    1959                                 7CCE7F4D1A411B9F00447C4C /* RetainPtr.mm in Sources */,
    1960                                 7CCE7F4F1A411BA400447C4C /* RetainPtrHashing.cpp in Sources */,
    1961                                 7CCE7F431A411B8E00447C4C /* SaturatedArithmeticOperations.cpp in Sources */,
    19622115                                7CCE7F121A411AE600447C4C /* ScrollPinningBehaviors.cpp in Sources */,
    19632116                                7CCE7ECB1A411A7E00447C4C /* SetAndUpdateCacheModel.mm in Sources */,
    19642117                                7CCE7ECC1A411A7E00447C4C /* SetDocumentURI.mm in Sources */,
    1965                                 7CCE7F421A411B8E00447C4C /* SHA1.cpp in Sources */,
    19662118                                7CCE7F131A411AE600447C4C /* ShouldGoToBackForwardListItem.cpp in Sources */,
     2119                                7C83E0501D0A641800FEBCF3 /* HTMLParserIdioms.cpp in Sources */,
    19672120                                7CCE7F141A411AE600447C4C /* ShouldKeepCurrentBackForwardListItemInList.cpp in Sources */,
    19682121                                7CCE7ECD1A411A7E00447C4C /* SimplifyMarkup.mm in Sources */,
     2122                                7C83E0BE1D0A651300FEBCF3 /* IndexedDBMultiProcess.mm in Sources */,
    19692123                                7CCE7F151A411AE600447C4C /* SpacebarScrolling.cpp in Sources */,
    19702124                                7CCE7EF21A411AE600447C4C /* StopLoadingDuringDidFailProvisionalLoad.cpp in Sources */,
    19712125                                7CCE7ECE1A411A7E00447C4C /* StopLoadingFromDidFinishLoading.mm in Sources */,
    19722126                                7CCE7ECF1A411A7E00447C4C /* StopLoadingFromDidReceiveResponse.mm in Sources */,
    1973                                 7CCE7F441A411B8E00447C4C /* StringBuilder.cpp in Sources */,
    19742127                                A14FC5851B89739100D107EB /* WKWebViewConfigurationExtras.mm in Sources */,
    19752128                                7CB184C61AA3F2100066EDFD /* ContentExtensions.cpp in Sources */,
    19762129                                7CCE7ED01A411A7E00447C4C /* StringByEvaluatingJavaScriptFromString.mm in Sources */,
    1977                                 7CCE7F451A411B8E00447C4C /* StringHasher.cpp in Sources */,
    1978                                 7CCE7F461A411B8E00447C4C /* StringImpl.cpp in Sources */,
    1979                                 7CCE7F471A411B8E00447C4C /* StringOperators.cpp in Sources */,
    19802130                                7CCE7ED11A411A7E00447C4C /* StringTruncator.mm in Sources */,
    1981                                 7CCE7F481A411B8E00447C4C /* StringView.cpp in Sources */,
    19822131                                7CCE7ED21A411A7E00447C4C /* SubresourceErrorCrash.mm in Sources */,
    19832132                                7CCE7EA81A411A1900447C4C /* SyntheticBackingScaleFactorWindow.m in Sources */,
    1984                                 7CCE7F491A411B8E00447C4C /* TemporaryChange.cpp in Sources */,
    19852133                                7CCE7F161A411AE600447C4C /* TerminateTwice.cpp in Sources */,
    19862134                                7CCE7EA91A411A1D00447C4C /* TestBrowsingContextLoadDelegate.mm in Sources */,
     
    19902138                                7CCE7ED31A411A7E00447C4C /* TypingStyleCrash.mm in Sources */,
    19912139                                2D51A0C71C8BF00C00765C45 /* DOMHTMLVideoElementWrapper.mm in Sources */,
     2140                                7C83E0B91D0A64F100FEBCF3 /* AutoLayoutIntegration.mm in Sources */,
    19922141                                7CCE7EDE1A411A9200447C4C /* URL.cpp in Sources */,
    19932142                                7CCE7EB01A411A4400447C4C /* URLExtras.mm in Sources */,
    19942143                                7C882E0A1C80C764006BF731 /* UserContentWorld.mm in Sources */,
    19952144                                7CCE7F271A411AF600447C4C /* UserContentController.mm in Sources */,
     2145                                7C83E04F1D0A641800FEBCF3 /* FileSystem.cpp in Sources */,
    19962146                                7CCE7F2D1A411B1000447C4C /* UserContentTest.mm in Sources */,
    19972147                                7CCE7F171A411AE600447C4C /* UserMedia.cpp in Sources */,
     2148                                7C83E0C41D0A654200FEBCF3 /* RequiresUserActionForPlayback.mm in Sources */,
    19982149                                7CCE7F181A411AE600447C4C /* UserMessage.cpp in Sources */,
    1999                                 7CCE7F4A1A411B8E00447C4C /* Vector.cpp in Sources */,
    20002150                                0F139E771A423A5B00F590F5 /* WeakObjCPtr.mm in Sources */,
    20012151                                7CCE7F191A411AE600447C4C /* WebArchive.cpp in Sources */,
    20022152                                7CCE7F1A1A411AE600447C4C /* WebCoreStatisticsWithNoWebProcess.cpp in Sources */,
    20032153                                7CCE7EAB1A411A2400447C4C /* WebKitAgnosticTest.mm in Sources */,
     2154                                7C83E03A1D0A602700FEBCF3 /* UtilitiesCocoa.mm in Sources */,
    20042155                                7CCE7ED41A411A7E00447C4C /* WebViewCanPasteURL.mm in Sources */,
    20052156                                7CCE7ED51A411A7E00447C4C /* WebViewDidCreateJavaScriptContext.mm in Sources */,
     
    20092160                                7CCE7F1C1A411AE600447C4C /* WillSendSubmitEvent.cpp in Sources */,
    20102161                                A1DF74321C41B65800A2F4D0 /* AlwaysRevalidatedURLSchemes.mm in Sources */,
     2162                                7C83E0C51D0A654600FEBCF3 /* ShrinkToFit.mm in Sources */,
    20112163                                7CCE7ED81A411A7E00447C4C /* WillSendSubmitEvent.mm in Sources */,
    2012                                 0FE447991B76F1EB009498EB /* ParkingLot.cpp in Sources */,
    20132164                                7CCE7ED91A411A7E00447C4C /* WindowlessWebViewWithMedia.mm in Sources */,
     2165                                7C83E0B71D0A64B800FEBCF3 /* MenuTypesForMouseEvents.cpp in Sources */,
    20142166                                7CCE7F2E1A411B1000447C4C /* WKBrowsingContextGroupTest.mm in Sources */,
    20152167                                7CCE7F2F1A411B1000447C4C /* WKBrowsingContextLoadDelegateTest.mm in Sources */,
    20162168                                7CCE7F1D1A411AE600447C4C /* WKImageCreateCGImageCrash.cpp in Sources */,
     2169                                7C83E0B51D0A649300FEBCF3 /* WKRetainPtr.cpp in Sources */,
    20172170                                7CCE7F1F1A411AE600447C4C /* WKPageGetScaleFactorNotZero.cpp in Sources */,
    20182171                                7CCE7F201A411AE600447C4C /* WKPageIsPlayingAudio.cpp in Sources */,
     
    20202173                                7CCE7F221A411AE600447C4C /* WKString.cpp in Sources */,
    20212174                                7CCE7F1E1A411AE600447C4C /* WKStringJSString.cpp in Sources */,
    2022                                 7CCE7F4B1A411B8E00447C4C /* WTFString.cpp in Sources */,
    20232175                        );
    20242176                        runOnlyForDeploymentPostprocessing = 0;
     
    20282180                        buildActionMask = 2147483647;
    20292181                        files = (
    2030                                 0766DD201A5AD5200023E3BB /* PendingAPIRequestURL.cpp in Sources */,
    2031                                 2D9A53AF1B31FA8D0074D5AA /* ShrinkToFit.mm in Sources */,
    2032                                 51B454EC1B4E236B0085EAA6 /* WebViewCloseInsideDidFinishLoadForFrame.mm in Sources */,
    2033                                 57901FAD1CAF12C200ED64F9 /* LoadInvalidURLRequest.mm in Sources */,
    2034                                 7AA021BB1AB09EA70052953F /* DateMath.cpp in Sources */,
    2035                                 CE50D8CA1C8665CE0072EA5A /* OptionSet.cpp in Sources */,
    2036                                 2D1FE0B01AD465C1006CD9E6 /* FixedLayoutSize.mm in Sources */,
    2037                                 1CB9BC381A67482300FE5678 /* WeakPtr.cpp in Sources */,
    20382182                                2E7765CD16C4D80A00BA2BB1 /* mainIOS.mm in Sources */,
    2039                                 2D8104CC1BEC13E70020DA46 /* FindInPage.mm in Sources */,
    2040                                 CDE195B41CFE0ADE0053D256 /* FullscreenTopContentInset.mm in Sources */,
    2041                                 93E943F21CD3E87E00AC08C2 /* VideoControlsManager.mm in Sources */,
    2042                                 5798E2B01CAF5C2800C5CBA0 /* ProvisionalURLNotChange.mm in Sources */,
    2043                                 CD225C081C45A69200140761 /* ParsedContentRange.cpp in Sources */,
    2044                                 41973B5D1AF22875006C7B36 /* SharedBuffer.cpp in Sources */,
    2045                                 57901FAF1CAF137100ED64F9 /* LoadInvalidURLRequest.mm in Sources */,
    2046                                 51BCEE4A1C84F4AF0042C82E /* IndexedDBMultiProcess.mm in Sources */,
    2047                                 57F10D931C7E7B3800ECDF30 /* IsNavigationActionTrusted.mm in Sources */,
    2048                                 2DD355361BD08378005DF4A7 /* AutoLayoutIntegration.mm in Sources */,
    2049                                 7AA6A1521AAC0B31002B2ED3 /* WorkQueue.cpp in Sources */,
    20502183                                2E7765CF16C4D81100BA2BB1 /* mainMac.mm in Sources */,
    2051                                 41973B5B1AF2286A006C7B36 /* FileSystem.cpp in Sources */,
    2052                                 CD89D03A1C4EDB2A00040A04 /* WebCoreNSURLSession.mm in Sources */,
    2053                                 83B88A341C80056D00BB2418 /* HTMLParserIdioms.cpp in Sources */,
    2054                                 93CFA8691CEBCFED000565A8 /* ViewWithEditableAreaLeak.mm in Sources */,
    2055                                 A1C4FB6E1BACCE50003742D0 /* QuickLook.mm in Sources */,
    2056                                 51B1EE8E1C80F5880064FB98 /* IndexedDBPersistence.mm in Sources */,
    2057                                 7A5623111AD5AF3E0096B920 /* MenuTypesForMouseEvents.cpp in Sources */,
    2058                                 1AAD19F71C7CE20300831E47 /* Coding.mm in Sources */,
    2059                                 1A9FB6CE1CA34BE500966124 /* EarlyKVOCrash.mm in Sources */,
    2060                                 9B0786A31C58830F00D159E3 /* InjectedBundleMakeAllShadowRootsOpen.cpp in Sources */,
    2061                                 51714EBA1D087416004723C4 /* CrossThreadTask.cpp in Sources */,
    2062                                 1A4F81CC1BDFFD37004E672E /* RemoteObjectRegistry.mm in Sources */,
    2063                                 51CB4AD81B3A079C00C1B1C6 /* ModalAlertsSPI.cpp in Sources */,
    2064                                 7A38D7E61C752D5F004F157D /* HashCountedSet.cpp in Sources */,
    2065                                 CD9E292C1C90A71F000BB800 /* RequiresUserActionForPlayback.mm in Sources */,
    2066                                 9B7916501BD89D0D00D50B8F /* FirstResponderScrollingPosition.mm in Sources */,
    2067                                 1CF0D3791BBF2F3D00B4EF54 /* WKRetainPtr.cpp in Sources */,
    2068                                 26F6E1F01ADC749B00DE696B /* DFAMinimizer.cpp in Sources */,
    2069                                 260BA5791B1D2E7B004FA07C /* DFACombiner.cpp in Sources */,
    2070                                 7A99D9941AD4A29D00373141 /* MenuTypesForMouseEvents.mm in Sources */,
    2071                                 E19DB9791B32137C00DB38D4 /* NavigatorLanguage.mm in Sources */,
    20722184                        );
    20732185                        runOnlyForDeploymentPostprocessing = 0;
     
    20792191                                7C882E091C80C630006BF731 /* UserContentWorldPlugIn.mm in Sources */,
    20802192                                A13EBBAA1B87428D00097110 /* WebProcessPlugIn.mm in Sources */,
     2193                                7C83E03D1D0A60D600FEBCF3 /* UtilitiesCocoa.mm in Sources */,
    20812194                                1A4F81CF1BDFFD53004E672E /* RemoteObjectRegistryPlugIn.mm in Sources */,
    20822195                                1C2B81831C891F0900A5529F /* CancelFontSubresourcePlugIn.mm in Sources */,
     
    20932206                                BC246D9C132F1FF000B56D7C /* CanHandleRequest_Bundle.cpp in Sources */,
    20942207                                297234B7173AFAC700983601 /* CustomProtocolsInvalidScheme_Bundle.cpp in Sources */,
     2208                                7C83E03C1D0A60D600FEBCF3 /* UtilitiesCocoa.mm in Sources */,
    20952209                                F6B7BE9517469212008A3445 /* DidAssociateFormControls_Bundle.cpp in Sources */,
    20962210                                BCB68042126FBFF100642A61 /* DocumentStartUserScriptAlertCrash_Bundle.cpp in Sources */,
     
    21342248
    21352249/* Begin PBXTargetDependency section */
     2250                7C83E0251D0A5B2500FEBCF3 /* PBXTargetDependency */ = {
     2251                        isa = PBXTargetDependency;
     2252                        target = 7C83DE951D0A590C00FEBCF3 /* TestWTFLibrary */;
     2253                        targetProxy = 7C83E0241D0A5B2500FEBCF3 /* PBXContainerItemProxy */;
     2254                };
     2255                7C83E0301D0A5E1B00FEBCF3 /* PBXTargetDependency */ = {
     2256                        isa = PBXTargetDependency;
     2257                        target = 8DD76F960486AA7600D96B5E /* TestWebKitAPI */;
     2258                        targetProxy = 7C83E02F1D0A5E1B00FEBCF3 /* PBXContainerItemProxy */;
     2259                };
     2260                7C83E0321D0A5E1D00FEBCF3 /* PBXTargetDependency */ = {
     2261                        isa = PBXTargetDependency;
     2262                        target = 7C83DF951D0A5AE400FEBCF3 /* TestWTF */;
     2263                        targetProxy = 7C83E0311D0A5E1D00FEBCF3 /* PBXContainerItemProxy */;
     2264                };
    21362265                7CCE7F511A4124DB00447C4C /* PBXTargetDependency */ = {
    21372266                        isa = PBXTargetDependency;
     
    21822311                        name = Release;
    21832312                };
     2313                7C83DF661D0A590C00FEBCF3 /* Debug */ = {
     2314                        isa = XCBuildConfiguration;
     2315                        baseConfigurationReference = 7C83E0271D0A5B8D00FEBCF3 /* TestWTFLibrary.xcconfig */;
     2316                        buildSettings = {
     2317                        };
     2318                        name = Debug;
     2319                };
     2320                7C83DF671D0A590C00FEBCF3 /* Release */ = {
     2321                        isa = XCBuildConfiguration;
     2322                        baseConfigurationReference = 7C83E0271D0A5B8D00FEBCF3 /* TestWTFLibrary.xcconfig */;
     2323                        buildSettings = {
     2324                        };
     2325                        name = Release;
     2326                };
     2327                7C83E0211D0A5AE400FEBCF3 /* Debug */ = {
     2328                        isa = XCBuildConfiguration;
     2329                        baseConfigurationReference = 7C83E0261D0A5B8D00FEBCF3 /* TestWTF.xcconfig */;
     2330                        buildSettings = {
     2331                        };
     2332                        name = Debug;
     2333                };
     2334                7C83E0221D0A5AE400FEBCF3 /* Release */ = {
     2335                        isa = XCBuildConfiguration;
     2336                        baseConfigurationReference = 7C83E0261D0A5B8D00FEBCF3 /* TestWTF.xcconfig */;
     2337                        buildSettings = {
     2338                        };
     2339                        name = Release;
     2340                };
     2341                7C83E02D1D0A5E1000FEBCF3 /* Debug */ = {
     2342                        isa = XCBuildConfiguration;
     2343                        buildSettings = {
     2344                                PRODUCT_NAME = "$(TARGET_NAME)";
     2345                        };
     2346                        name = Debug;
     2347                };
     2348                7C83E02E1D0A5E1000FEBCF3 /* Release */ = {
     2349                        isa = XCBuildConfiguration;
     2350                        buildSettings = {
     2351                                PRODUCT_NAME = "$(TARGET_NAME)";
     2352                        };
     2353                        name = Release;
     2354                };
    21842355                7CCE7E9D1A41144E00447C4C /* Debug */ = {
    21852356                        isa = XCBuildConfiguration;
     
    22452416                        defaultConfigurationName = Release;
    22462417                };
     2418                7C83DF651D0A590C00FEBCF3 /* Build configuration list for PBXNativeTarget "TestWTFLibrary" */ = {
     2419                        isa = XCConfigurationList;
     2420                        buildConfigurations = (
     2421                                7C83DF661D0A590C00FEBCF3 /* Debug */,
     2422                                7C83DF671D0A590C00FEBCF3 /* Release */,
     2423                        );
     2424                        defaultConfigurationIsVisible = 0;
     2425                        defaultConfigurationName = Release;
     2426                };
     2427                7C83E0201D0A5AE400FEBCF3 /* Build configuration list for PBXNativeTarget "TestWTF" */ = {
     2428                        isa = XCConfigurationList;
     2429                        buildConfigurations = (
     2430                                7C83E0211D0A5AE400FEBCF3 /* Debug */,
     2431                                7C83E0221D0A5AE400FEBCF3 /* Release */,
     2432                        );
     2433                        defaultConfigurationIsVisible = 0;
     2434                        defaultConfigurationName = Release;
     2435                };
     2436                7C83E02C1D0A5E1000FEBCF3 /* Build configuration list for PBXAggregateTarget "All" */ = {
     2437                        isa = XCConfigurationList;
     2438                        buildConfigurations = (
     2439                                7C83E02D1D0A5E1000FEBCF3 /* Debug */,
     2440                                7C83E02E1D0A5E1000FEBCF3 /* Release */,
     2441                        );
     2442                        defaultConfigurationIsVisible = 0;
     2443                        defaultConfigurationName = Release;
     2444                };
    22472445                7CCE7EA11A41144E00447C4C /* Build configuration list for PBXNativeTarget "TestWebKitAPILibrary" */ = {
    22482446                        isa = XCConfigurationList;
  • trunk/Tools/TestWebKitAPI/Tests/WTF/RunLoop.cpp

    r199694 r201938  
    2626#include "config.h"
    2727
    28 #include "PlatformUtilities.h"
     28#include "Utilities.h"
    2929#include <wtf/RunLoop.h>
    3030
  • trunk/Tools/TestWebKitAPI/cocoa/PlatformUtilitiesCocoa.mm

    r188844 r201938  
    3333namespace Util {
    3434
    35 void run(bool* done)
    36 {
    37     while (!*done)
    38         [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantPast]];
    39 }
    40 
    41 void sleep(double seconds)
    42 {
    43     usleep(seconds * 1000000);
    44 }
    45 
    4635std::string toSTD(NSString *string)
    4736{
Note: See TracChangeset for help on using the changeset viewer.